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

# Check if indexing is finished with indexing ratio

> Retrieves the current status of blockchain data indexing by the BlockScout instance.



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/main-page/indexing-status
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/main-page/indexing-status:
    get:
      tags:
        - main-page
      summary: Check if indexing is finished with indexing ratio
      description: >-
        Retrieves the current status of blockchain data indexing by the
        BlockScout instance.
      operationId: BlockScoutWeb.API.V2.MainPageController.indexing_status
      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:
                  finished_indexing:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  finished_indexing_blocks:
                    type: boolean
                    x-struct: null
                    x-validate: null
                  indexed_blocks_ratio:
                    format: float
                    type: number
                    x-struct: null
                    x-validate: null
                  indexed_internal_transactions_ratio:
                    format: float
                    nullable: true
                    type: number
                    x-struct: null
                    x-validate: null
                type: object
                x-struct: null
                x-validate: null
          description: Current blockchain indexing status.
      callbacks: {}

````