---
title: "List earnings reports"
url: "https://developer.argaam.com/apis/news-editorial-layer-api-production-v1/versions/ab3ee138-9ff0-43e3-bb36-91df10612a3e/operations/getNewsEarningReports"
---

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

# List earnings reports

`GET` `/api/v1.1/news/earning-reports`

Operation ID: `getNewsEarningReports`

Returns the earnings reports available on this layer. Paginated: use `page` and `pageSize`. Bound the result with the `from` and `to` date parameters. Set `lang` to `1` for English or `2` for Arabic.

## Query parameters

- `languageId` (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`.
- `stockSymbol` (string, optional) - Tadawul stock symbol of the company, e.g. `2222` (Saudi Aramco).
- `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/earning-reports:
    get:
      tags:
        - News
      parameters:
        - name: languageId
          in: query
          schema:
            type: integer
            format: int32
          example: 2
          description: "Response language: `1` = English, `2` = Arabic. Defaults to `1`."
        - name: from
          in: query
          schema:
            type: string
            default: ""
          example: 2024-01-01
          description: Start of the date range, inclusive. Format `YYYY-MM-DD`.
        - name: to
          in: query
          schema:
            type: string
            default: ""
          example: 2024-03-31
          description: End of the date range, inclusive. Format `YYYY-MM-DD`.
        - name: stockSymbol
          in: query
          schema:
            type: string
            default: ""
          example: "2222"
          description: Tadawul stock symbol of the company, e.g. `2222` (Saudi Aramco).
        - name: page
          in: query
          schema:
            type: integer
            format: int32
            default: 0
          example: 1
          description: 1-based page number. Defaults to `1`.
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int32
            default: 0
          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: List earnings reports
      description: >-
        Returns the earnings reports available on this layer.


        Paginated: use `page` and `pageSize`. Bound the result with the `from`
        and `to` date parameters. Set `lang` to `1` for English or `2` for
        Arabic.
      operationId: getNewsEarningReports
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
