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

# Indexer configuration

> Returns config of indexer.



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/config/indexer
openapi: 3.0.0
info:
  contact:
    email: info@blockscout.com
  title: Blockscout
  version: 11.0.3
servers:
  - url: http://localhost/api
    variables: {}
security: []
tags:
  - name: blocks
  - name: transactions
  - name: addresses
  - name: internal-transactions
  - name: tokens
  - name: token-transfers
  - name: smart-contracts
  - name: config
  - name: main-page
  - name: search
  - name: stats
  - name: csv-export
  - name: account-abstraction
  - name: withdrawals
  - name: advanced-filters
  - name: arbitrum
  - name: legacy
  - name: optimism
  - name: mud
  - name: celo
  - name: scroll
  - name: zilliqa
paths:
  /v2/config/indexer:
    get:
      tags:
        - config
      summary: Indexer configuration
      description: Returns config of indexer.
      operationId: BlockScoutWeb.API.V2.ConfigController.indexer
      parameters:
        - description: API key for rate limiting or for sensitive endpoints
          in: query
          name: apikey
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: Secret key for getting access to restricted resources
          in: query
          name: key
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  block_reward_fetcher_enabled:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  indexer_enabled:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  internal_transactions_fetcher_enabled:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  pending_transactions_fetcher_enabled:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  token_instance_retry_fetcher_enabled:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  token_instance_sanitize_fetcher_enabled:
                    type: boolean
                    x-struct: null
                    x-validate: null
                type: object
                x-struct: null
                x-validate: null
          description: Indexer configuration.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonErrorResponse'
          description: Unprocessable Entity
      callbacks: {}
components:
  schemas:
    JsonErrorResponse:
      properties:
        errors:
          items:
            properties:
              detail:
                example: null value where string expected
                type: string
                x-struct: null
                x-validate: null
              source:
                properties:
                  pointer:
                    example: /data/attributes/petName
                    type: string
                    x-struct: null
                    x-validate: null
                required:
                  - pointer
                type: object
                x-struct: null
                x-validate: null
              title:
                example: Invalid value
                type: string
                x-struct: null
                x-validate: null
            required:
              - title
              - source
              - detail
            type: object
            x-struct: null
            x-validate: null
          type: array
          x-struct: null
          x-validate: null
      required:
        - errors
      title: JsonErrorResponse
      type: object
      x-struct: Elixir.OpenApiSpex.JsonErrorResponse
      x-validate: null

````