---
title: "Get financial results for a specific company within a market."
url: "https://developer.argaam.com/apis/fundamentals-layer-api-production-v1/versions/9efc2daf-927c-4236-8c4b-94837efef50d/operations/getMarketsByMarketIdFinancialResultsByStockSymbol"
---

> Full API specification: https://developer.argaam.com/apis/fundamentals-layer-api-production-v1/versions/9efc2daf-927c-4236-8c4b-94837efef50d.md

# Get financial results for a specific company within a market.

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

Operation ID: `getMarketsByMarketIdFinancialResultsByStockSymbol`

Returns the published financial statement results for a single company within the market context, for the specified fiscal year and period. This is a scoped version of `GET /markets/{marketId}/financial-results` that narrows to one company without needing to filter client-side. **Period values** — `year` (default), `quarter`, `interim`. **Tip:** For the structured financial statement (income statement, balance sheet) for a company use `GET /companies/{companyId}/financials/history?year={year}`.

## Path parameters

- `marketId` (integer, int32, required) - Numeric market identifier (e.g. `1` = Tadawul / Saudi main market). Use `GET /api/v1.1/markets` to list valid values.
- `stockSymbol` (string, required) - Tadawul stock symbol of the company, e.g. `2222` (Saudi Aramco).

## Query parameters

- `year` (integer, int32, optional) - Calendar year to filter by, e.g. `2025`.
- `period` (string, optional) - Time window for the series, e.g. `1d`, `1m`, `3m`, `1y`, `5y`. Defaults to `year`.
- `fiscalPeriod` (string, optional) - Fiscal period within the year: `1`-`4` for quarters, `5` for the full year.

## Responses

- `200` - Success

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Fundamentals Layer API
  version: v1.1
servers:
  - url: https://api.argaam.com
    description: Argaam API Gateway (Production)
paths:
  /api/v1.1/markets/{marketId}/financial-results/{stockSymbol}:
    get:
      tags:
        - Markets
      parameters:
        - name: marketId
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: Numeric market identifier (e.g. `1` = Tadawul / Saudi main market).
            Use `GET /api/v1.1/markets` to list valid values.
          example: 3
        - name: stockSymbol
          in: path
          required: true
          schema:
            type: string
          description: Tadawul stock symbol of the company, e.g. `2222` (Saudi Aramco).
        - name: year
          in: query
          schema:
            type: integer
            format: int32
          example: 2023
          description: Calendar year to filter by, e.g. `2025`.
        - name: period
          in: query
          schema:
            type: string
            default: year
          example: year
          description: Time window for the series, e.g. `1d`, `1m`, `3m`, `1y`, `5y`.
            Defaults to `year`.
        - name: fiscalPeriod
          in: query
          schema:
            type: string
            default: ""
          example: year
          description: "Fiscal period within the year: `1`-`4` for quarters, `5` for the
            full year."
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ApiV1Response"
      summary: Get financial results for a specific company within a market.
      description: "Returns the published financial statement results for a single
        company\r

        within the market context, for the specified fiscal year and period.\r

        \            \r

        This is a scoped version of `GET
        /markets/{marketId}/financial-results`\r

        that narrows to one company without needing to filter client-side.\r

        \               \r

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

        \            \r

        **Tip:** For the structured financial statement (income statement,\r

        balance sheet) for a company use\r

        `GET /companies/{companyId}/financials/history?year={year}`."
      operationId: getMarketsByMarketIdFinancialResultsByStockSymbol
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
```
