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



## OpenAPI

````yaml /storage-proofs-api/openapi-storage-proof-api.json get /get_actions/{query_id}
openapi: 3.1.0
info:
  title: Storage Proof API
  description: >-
    Storage Proof API served by Mission Control. Request cryptographic proofs of
    on-chain header, account, and storage data for verification via Satellite
    contracts. Authenticate with the `api-key` header on all endpoints except
    `/is-alive`.
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://mission-control.api.herodotus.cloud
    description: Production
  - url: https://api.herodotus.cloud
    description: Production alias (Storage Proof API hostname)
security:
  - ApiKeyAuth: []
paths:
  /get_actions/{query_id}:
    get:
      tags:
        - Actions
      operationId: get_actions
      parameters:
        - name: query_id
          in: path
          description: Query ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Actions for the given query
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetActionsResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
components:
  schemas:
    GetActionsResponse:
      type: object
      required:
        - actions
      properties:
        actions:
          type: array
          items:
            $ref: '#/components/schemas/ActionResponse'
    ApiErrorResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    ActionResponse:
      type: object
      required:
        - query_id
        - index
        - status
        - depends_on
        - can_trigger
        - method
        - created_at
      properties:
        can_trigger:
          type: array
          items:
            type: integer
            format: int32
        completed_at:
          type:
            - string
            - 'null'
        created_at:
          type: string
        depends_on:
          type: array
          items:
            type: integer
            format: int32
        index:
          type: integer
          format: int32
        method:
          type: object
        query_id:
          type: string
        status:
          $ref: '#/components/schemas/ExecutionStatus'
        tracking_id:
          type:
            - string
            - 'null'
    ExecutionStatus:
      type: string
      enum:
        - PENDING
        - IN_PROGRESS
        - COMPLETED
        - FAILED
        - CANCELLED
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````