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

# Discover data endpoints

> Search monid.ai's marketplace of third-party data endpoints (web scrapers, contact and company enrichment, search) in natural language. Free — no run is executed. The response is monid's own discover body: each result names the `provider`, `endpoint`, and `price` you pass to inspect or run.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/monid/discover
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/discover:
    post:
      tags:
        - Data endpoints
      summary: Discover data endpoints
      description: >-
        Search monid.ai's marketplace of third-party data endpoints (web
        scrapers, contact and company enrichment, search) in natural language.
        Free — no run is executed. The response is monid's own discover body:
        each result names the `provider`, `endpoint`, and `price` you pass to
        inspect or run.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - query
              properties:
                query:
                  minLength: 1
                  maxLength: 1000
                  type: string
                limit:
                  minimum: 1
                  maximum: 40
                  type: integer
                minScore:
                  minimum: 0
                  maximum: 2
                  type: number
      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).

````