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

# Inspect data endpoint

> Return a data endpoint's input schema, documentation, and price. Free — no run is executed. Pass the returned `price` object into `POST /v1/monid/run` to size the wallet reserve exactly.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/monid/inspect
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/inspect:
    post:
      tags:
        - Data endpoints
      summary: Inspect data endpoint
      description: >-
        Return a data endpoint's input schema, documentation, and price. Free —
        no run is executed. Pass the returned `price` object into `POST
        /v1/monid/run` to size the wallet reserve exactly.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - provider
                - endpoint
              properties:
                provider:
                  minLength: 1
                  maxLength: 128
                  pattern: ^[A-Za-z0-9._-]+$
                  type: string
                endpoint:
                  minLength: 1
                  maxLength: 512
                  type: string
      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).

````