> ## 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

> Get one EMISS statistical indicator by its id: passport, publishing agency and dimension catalogue

**Price:** 5 credits

**⚠️ Common errors:** 408: fedstat.ru never began sending this indicator's page. A few indicators behave this way, and some of them answer on a later call, so retry once before treating the indicator as unavailable., 412: No such indicator id, or fedstat.ru serves this one only to signed-in users.



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/fedstat/indicators
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:
    post:
      tags:
        - /fedstat
      summary: /fedstat/indicators
      description: >-
        Get one EMISS statistical indicator by its id: passport, publishing
        agency and dimension catalogue


        **Price:** 5 credits


        **⚠️ Common errors:** 408: fedstat.ru never began sending this
        indicator's page. A few indicators behave this way, and some of them
        answer on a later call, so retry once before treating the indicator as
        unavailable., 412: No such indicator id, or fedstat.ru serves this one
        only to signed-in users.
      operationId: __api_fedstat_indicators_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FedstatIndicatorPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FedstatIndicator'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FedstatIndicatorPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        indicator_id:
          type: integer
          minimum: 1
      type: object
      required:
        - indicator_id
    FedstatIndicator:
      properties:
        '@type':
          type: string
          default: FedstatIndicator
        id:
          type: integer
        url:
          type: string
        name:
          type: string
        organization:
          type: string
          default: ''
        department:
          type: string
          default: ''
        sections:
          items:
            $ref: '#/components/schemas/FedstatIndicatorSection'
          type: array
          default: []
        themes:
          items:
            type: string
          type: array
          default: []
        gov_programs:
          items:
            type: string
          type: array
          default: []
        exclusion_note:
          type: string
          default: ''
        methodology:
          type: string
          default: ''
        comment:
          type: string
          default: ''
        contact:
          anyOf:
            - $ref: '#/components/schemas/FedstatIndicatorContact'
            - type: 'null'
        periodicity:
          items:
            $ref: '#/components/schemas/FedstatIndicatorPeriodicity'
          type: array
          default: []
        units:
          items:
            type: string
          type: array
          default: []
        classifiers:
          items:
            type: string
          type: array
          default: []
        source_method:
          type: string
          default: ''
        source_forms:
          items:
            $ref: '#/components/schemas/FedstatIndicatorForm'
          type: array
          default: []
        valid_from_date:
          type: string
          default: ''
        valid_to_date:
          type: string
          default: ''
        series_start_year:
          anyOf:
            - type: integer
            - type: 'null'
        series_end_year:
          anyOf:
            - type: integer
            - type: 'null'
        last_update_date:
          type: string
          default: ''
        has_data:
          type: boolean
          default: false
        dimensions:
          items:
            $ref: '#/components/schemas/FedstatDimension'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FedstatIndicatorSection:
      properties:
        '@type':
          type: string
          default: FedstatIndicatorSection
        id:
          type: string
        name:
          type: string
      type: object
      required:
        - id
        - name
    FedstatIndicatorContact:
      properties:
        '@type':
          type: string
          default: FedstatIndicatorContact
        name:
          type: string
          default: ''
        phone:
          type: string
          default: ''
        email:
          type: string
          default: ''
      type: object
    FedstatIndicatorPeriodicity:
      properties:
        '@type':
          type: string
          default: FedstatIndicatorPeriodicity
        name:
          type: string
        characteristic:
          type: string
          default: ''
        submission:
          type: string
          default: ''
      type: object
      required:
        - name
    FedstatIndicatorForm:
      properties:
        '@type':
          type: string
          default: FedstatIndicatorForm
        id:
          type: string
        name:
          type: string
        url:
          type: string
      type: object
      required:
        - id
        - name
        - url
    FedstatDimension:
      properties:
        '@type':
          type: string
          default: FedstatDimension
        id:
          type: string
        name:
          type: string
        values:
          items:
            $ref: '#/components/schemas/FedstatDimensionValue'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    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
    FedstatDimensionValue:
      properties:
        '@type':
          type: string
          default: FedstatDimensionValue
        id:
          type: string
        name:
          type: string
        code:
          type: string
          default: ''
        is_default:
          type: boolean
          default: false
      type: object
      required:
        - id
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````