---
title: "Articles enriched with stock-symbol references for the period."
url: "https://developer.argaam.com/apis/news-editorial-layer-api-production-v1/versions/ab3ee138-9ff0-43e3-bb36-91df10612a3e/operations/getNewsArticlesWithSymbols"
---

> Full API specification: https://developer.argaam.com/apis/news-editorial-layer-api-production-v1/versions/ab3ee138-9ff0-43e3-bb36-91df10612a3e.md

# Articles enriched with stock-symbol references for the period.

`GET` `/api/v1.1/news/articles/with-symbols`

Operation ID: `getNewsArticlesWithSymbols`

Returns articles that mention listed companies, with each article including the symbols referenced inside the body. Use for **NLP / sentiment-tagging pipelines**. ### Example ``` GET /api/v1.1/news/articles/with-symbols?lang=2&from=2024-01-01&to=2024-01-31&marketId=1 ```

## Query parameters

- `lang` (integer, int32, optional) - Response language: `1` = English, `2` = Arabic. Defaults to `1`.
- `from` (string, optional) - Start of the date range, inclusive. Format `YYYY-MM-DD`.
- `to` (string, optional) - End of the date range, inclusive. Format `YYYY-MM-DD`.
- `marketId` (integer, int32, optional) - Numeric market identifier (e.g. `1` = Tadawul / Saudi main market). Use `GET /api/v1.1/markets` to list valid values. Defaults to `3`.
- `page` (integer, int32, optional) - 1-based page number. Defaults to `1`.
- `pageSize` (integer, int32, optional) - Number of records per page. Defaults to the endpoint's standard page size; large values are capped server-side.

## Responses

- `200` - Success

## OpenAPI definition

````yaml
openapi: 3.0.1
info:
  title: News & Editorial Layer API
  version: v1.1
servers:
  - url: https://api.argaam.com
    description: Argaam API Gateway (Production)
paths:
  /api/v1.1/news/articles/with-symbols:
    get:
      tags:
        - News
      parameters:
        - name: lang
          in: query
          schema:
            type: integer
            format: int32
            default: 1
          example: 1
          description: "Response language: `1` = English, `2` = Arabic. Defaults to `1`."
        - name: from
          in: query
          schema:
            type: string
          example: 2024-01-01
          description: Start of the date range, inclusive. Format `YYYY-MM-DD`.
        - name: to
          in: query
          schema:
            type: string
          example: 2024-03-31
          description: End of the date range, inclusive. Format `YYYY-MM-DD`.
        - name: marketId
          in: query
          schema:
            type: integer
            format: int32
            default: 3
          example: 3
          description: Numeric market identifier (e.g. `1` = Tadawul / Saudi main market).
            Use `GET /api/v1.1/markets` to list valid values. Defaults to `3`.
        - name: page
          in: query
          schema:
            type: integer
            format: int32
            default: 1
          example: 1
          description: 1-based page number. Defaults to `1`.
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int32
            default: 30
          example: 20
          description: Number of records per page. Defaults to the endpoint's standard
            page size; large values are capped server-side.
      responses:
        "200":
          description: Success
      summary: Articles enriched with stock-symbol references for the period.
      description: "Returns articles that mention listed companies, with each\r

        article including the symbols referenced inside the body.\r

        Use for **NLP / sentiment-tagging pipelines**.\r

        \            \r

        ### Example\r

        ```\r

        GET
        /api/v1.1/news/articles/with-symbols?lang=2&from=2024-01-01&to=2024-01-\
        31&marketId=1\r

        ```"
      operationId: getNewsArticlesWithSymbols
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
