> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /fedstat/indicators/data

> Get the observations of one EMISS indicator, sliced by year and by its own dimension values

**Price:** 20 credits per 2043 results

**⚠️ Common errors:** 408: Ran out of time: either fedstat.ru never began sending the indicator's page, which a few indicators do and some of them recover from on a later call, or the slice walk itself ran out, in which case whatever observations were already collected come back with it., 412: No such indicator id, fedstat.ru serves it only to signed-in users, or it carries no observations.



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/fedstat/indicators/data
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/fedstat/indicators/data:
    post:
      tags:
        - /fedstat
      summary: /fedstat/indicators/data
      description: >-
        Get the observations of one EMISS indicator, sliced by year and by its
        own dimension values


        **Price:** 20 credits per 2043 results


        **⚠️ Common errors:** 408: Ran out of time: either fedstat.ru never
        began sending the indicator's page, which a few indicators do and some
        of them recover from on a later call, or the slice walk itself ran out,
        in which case whatever observations were already collected come back
        with it., 412: No such indicator id, fedstat.ru serves it only to
        signed-in users, or it carries no observations.
      operationId: __api_fedstat_indicators_data_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FedstatIndicatorDataPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FedstatObservation'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FedstatIndicatorDataPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        indicator_id:
          type: integer
          minimum: 1
        count:
          type: integer
          minimum: 1
        years:
          anyOf:
            - items:
                type: integer
              type: array
            - type: 'null'
        filters:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
      type: object
      required:
        - indicator_id
        - count
    FedstatObservation:
      properties:
        '@type':
          type: string
          default: FedstatObservation
        cell_id:
          type: string
        indicator_id:
          type: integer
        year:
          anyOf:
            - type: integer
            - type: 'null'
        period:
          type: string
          default: ''
        unit:
          type: string
          default: ''
        value:
          anyOf:
            - type: number
            - type: 'null'
        value_text:
          type: string
          default: ''
        dimensions:
          items:
            $ref: '#/components/schemas/FedstatObservationDimension'
          type: array
          default: []
      type: object
      required:
        - cell_id
        - indicator_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FedstatObservationDimension:
      properties:
        '@type':
          type: string
          default: FedstatObservationDimension
        id:
          type: string
        name:
          type: string
        value_id:
          type: string
        value:
          type: string
        value_code:
          type: string
          default: ''
      type: object
      required:
        - id
        - name
        - value_id
        - value
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````