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

# Get data endpoint run

> Poll an async data endpoint run by its AI Reserve `job_id`. Runs are scoped to your organization — other organizations' run ids answer `404`. The response is the completed monid run body plus the `aireserve` envelope; `aireserve.status` is `succeeded` or `failed` once terminal.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/monid/runs/{run_id}
openapi: 3.0.3
info:
  title: AI Reserve Gateway API
  description: >-
    The AI Reserve API surface — OpenAI-compatible chat completions,
    Anthropic-compatible messages, Bedrock Converse, images, video, files,
    text-to-speech, realtime voice sessions, and GPU Compute pod/volume
    management — all behind one endpoint and one API key.
  version: 1.0.0
servers:
  - url: https://api.aireserve.com
security:
  - bearerAuth: []
paths:
  /v1/monid/runs/{run_id}:
    get:
      tags:
        - Data endpoints
      summary: Get data endpoint run
      description: >-
        Poll an async data endpoint run by its AI Reserve `job_id`. Runs are
        scoped to your organization — other organizations' run ids answer `404`.
        The response is the completed monid run body plus the `aireserve`
        envelope; `aireserve.status` is `succeeded` or `failed` once terminal.
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: run_id
          required: true
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your AI Reserve API key (aireserve_api_…) from the API Keys page in the
        portal (https://portal.aireserve.com/keys).

````