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

# Get the status of your batch query

> Provide the batch query id to get the status of your batch query.



## OpenAPI

````yaml /storage-proofs-api/openapi-storage-proof-api.json get /batch-query-status
openapi: 3.0.3
info:
  title: Storage Proofs API
  description: >-
    API for submitting and managing Storage Proofs API requests across various
    blockchain networks
  version: 1.0.0
servers:
  - url: https://api.herodotus.cloud
    description: Production Server
  - url: https://staging.api.herodotus.cloud
    description: Staging Server
security: []
tags:
  - name: The one you want
    description: Probably the route you're looking for
  - name: Basic Batch Query
    description: Batch Query routes
  - name: Health check
    description: Health check routes
  - name: Info
    description: Info routes
paths:
  /batch-query-status:
    get:
      tags:
        - Basic Batch Query
      summary: Get the status of your batch query
      description: Provide the batch query id to get the status of your batch query.
      parameters:
        - schema:
            type: string
          in: query
          name: batchQueryId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  queryStatus:
                    $ref: '#/components/schemas/QueryStatus'
                  info:
                    type: array
                    items:
                      type: string
                required:
                  - queryStatus
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error: {}
                  info: {}
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error: {}
                additionalProperties: false
      security:
        - ApiKeyAuth: []
components:
  schemas:
    QueryStatus:
      type: string
      enum:
        - DONE
        - IN_PROGRESS
        - REJECTED
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````