---
title: "Get aggregated financial results for all companies in a market."
url: "https://developer.argaam.com/apis/fundamentals-layer-api-sandbox-v1/versions/6df307f2-7eaf-4885-847f-c59d9ce4f0bb/operations/getMarketsByMarketIdFinancialResults"
---

> Full API specification: https://developer.argaam.com/apis/fundamentals-layer-api-sandbox-v1/versions/6df307f2-7eaf-4885-847f-c59d9ce4f0bb.md

# Get aggregated financial results for all companies in a market.

`GET` `/api/v1.1/markets/{marketId}/financial-results`

Operation ID: `getMarketsByMarketIdFinancialResults`

Returns the published financial statement results for all companies in the specified market for the given fiscal year and period. Useful for building a market-wide results summary table or for comparing company-level performance within the same period. **Period values** — `year` (default), `quarter`, `interim`. **Tip:** To drill into a single company's results within this market use `GET /markets/{marketId}/financial-results/{companyId}`.

## Path parameters

- `marketId` (integer, int32, required) - Market ID (e.g. `1` for Saudi Tadawul).

## Query parameters

- `year` (integer, int32, optional) - Fiscal year (e.g. `2023`).
- `period` (string, optional) - Fiscal period type: `year` (default), `quarter`, or `interim`. Defaults to `year`.
- `fiscalPeriod` (string, optional) - Specific sub-period: `year`, `q1`–`q4`, `i1`–`i3`.

## Responses

- `200` - Success

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Fundamentals Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/markets/{marketId}/financial-results:
    get:
      tags:
        - Markets
      parameters:
        - name: marketId
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: Market ID (e.g. `1` for Saudi Tadawul).
          example: 3
        - name: year
          in: query
          description: Fiscal year (e.g. `2023`).
          schema:
            type: integer
            format: int32
          example: 2023
        - name: period
          in: query
          description: "Fiscal period type: `year` (default), `quarter`, or `interim`.
            Defaults to `year`."
          schema:
            type: string
            default: year
          example: year
        - name: fiscalPeriod
          in: query
          description: "Specific sub-period: `year`, `q1`–`q4`, `i1`–`i3`."
          schema:
            type: string
            default: ""
          example: year
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ApiV1Response"
      summary: Get aggregated financial results for all companies in a market.
      description: "Returns the published financial statement results for all
        companies\r

        in the specified market for the given fiscal year and period.\r

        \            \r

        Useful for building a market-wide results summary table or for\r

        comparing company-level performance within the same period.\r

        \                 \r

        **Period values** — `year` (default), `quarter`, `interim`.\r

        \            \r

        **Tip:** To drill into a single company's results within this market
        use\r

        `GET /markets/{marketId}/financial-results/{companyId}`."
      operationId: getMarketsByMarketIdFinancialResults
security:
  - ApiKeyAuth: []
components:
  schemas:
    ApiV1Response:
      type: object
      properties:
        success:
          type: boolean
        apiVersion:
          type: string
          nullable: true
        timestamp:
          type: string
          format: date-time
        requestId:
          type: string
          nullable: true
        data:
          nullable: true
        meta:
          $ref: "#/components/schemas/ApiV1Meta"
        rateLimit:
          $ref: "#/components/schemas/ApiV1RateLimit"
      additionalProperties: false
    ApiV1Meta:
      type: object
      properties:
        page:
          type: integer
          format: int32
        pageSize:
          type: integer
          format: int32
        totalRecords:
          type: integer
          format: int32
        totalPages:
          type: integer
          format: int32
          readOnly: true
        hasNextPage:
          type: boolean
          readOnly: true
        hasPreviousPage:
          type: boolean
          readOnly: true
      additionalProperties: false
    ApiV1RateLimit:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        remaining:
          type: integer
          format: int32
        reset:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
