LlamaParse LlamaExtract API

The LlamaExtract API from LlamaParse — 16 operation(s) for llamaextract.

Operations 21

GET /api/v1/extraction/jobs List Jobs #
POST /api/v1/extraction/jobs Run Job #
GET /api/v1/extraction/jobs/{job_id} Get Job #
POST /api/v1/extraction/jobs/file Run Job On File #
POST /api/v1/extraction/jobs/batch Run Batch Jobs #
GET /api/v1/extraction/jobs/{job_id}/result Get Job Result #
GET /api/v1/extraction/runs List Extract Runs #
GET /api/v1/extraction/runs/latest-from-ui Get Latest Run From Ui #
GET /api/v1/extraction/runs/by-job/{job_id} Get Run By Job Id #
GET /api/v1/extraction/runs/{run_id} Get Run #
DELETE /api/v1/extraction/runs/{run_id} Delete Extraction Run #
POST /api/v1/extraction/run Extract Stateless #
POST /api/v1/extraction/extraction-agents Create Extraction Agent #
GET /api/v1/extraction/extraction-agents List Extraction Agents #
POST /api/v1/extraction/extraction-agents/schema/validation Validate Extraction Schema #
POST /api/v1/extraction/extraction-agents/schema/generate Generate Extraction Schema #
GET /api/v1/extraction/extraction-agents/by-name/{name} Get Extraction Agent By Name #
GET /api/v1/extraction/extraction-agents/default Get Or Create Default Extraction Agent #
GET /api/v1/extraction/extraction-agents/{extraction_agent_id} Get Extraction Agent #
DELETE /api/v1/extraction/extraction-agents/{extraction_agent_id} Delete Extraction Agent #
PUT /api/v1/extraction/extraction-agents/{extraction_agent_id} Update Extraction Agent #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/llamaparse-llamaextract-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

llamaparse-llamaextract-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Llama Platform Agent Data Llama Extract API
  version: 0.1.0
servers:
- url: https://api.cloud.llamaindex.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: LlamaExtract
paths:
  /api/v1/extraction/jobs:
    get:
      tags:
      - LlamaExtract
      summary: List Jobs
      operationId: list_jobs_api_v1_extraction_jobs_get
      security:
      - HTTPBearer: []
      parameters:
      - name: extraction_agent_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
          title: Extraction Agent Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExtractJob'
                title: Response List Jobs Api V1 Extraction Jobs Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - LlamaExtract
      summary: Run Job
      operationId: run_job_api_v1_extraction_jobs_post
      security:
      - HTTPBearer: []
      parameters:
      - name: from_ui
        in: query
        required: false
        schema:
          type: boolean
          default: false
          title: From Ui
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractJobCreate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/jobs/{job_id}:
    get:
      tags:
      - LlamaExtract
      summary: Get Job
      operationId: get_job_api_v1_extraction_jobs__job_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Job Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/jobs/file:
    post:
      tags:
      - LlamaExtract
      summary: Run Job On File
      operationId: run_job_on_file_api_v1_extraction_jobs_file_post
      security:
      - HTTPBearer: []
      parameters:
      - name: from_ui
        in: query
        required: false
        schema:
          type: boolean
          default: false
          title: From Ui
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_run_job_on_file_api_v1_extraction_jobs_file_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/jobs/batch:
    post:
      tags:
      - LlamaExtract
      summary: Run Batch Jobs
      operationId: run_batch_jobs_api_v1_extraction_jobs_batch_post
      security:
      - HTTPBearer: []
      parameters:
      - name: from_ui
        in: query
        required: false
        schema:
          type: boolean
          default: false
          title: From Ui
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractJobCreateBatch'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExtractJob'
                title: Response Run Batch Jobs Api V1 Extraction Jobs Batch Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/jobs/{job_id}/result:
    get:
      tags:
      - LlamaExtract
      summary: Get Job Result
      operationId: get_job_result_api_v1_extraction_jobs__job_id__result_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Job Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractResultset'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/runs:
    get:
      tags:
      - LlamaExtract
      summary: List Extract Runs
      operationId: list_extract_runs_api_v1_extraction_runs_get
      security:
      - HTTPBearer: []
      parameters:
      - name: extraction_agent_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
          title: Extraction Agent Id
      - name: skip
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Skip
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 25
          title: Limit
      - name: status
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by status
          title: Status
        description: Filter by status
      - name: run_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by run ID
          title: Run Id
        description: Filter by run ID
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedExtractRunsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/runs/latest-from-ui:
    get:
      tags:
      - LlamaExtract
      summary: Get Latest Run From Ui
      operationId: get_latest_run_from_ui_api_v1_extraction_runs_latest_from_ui_get
      security:
      - HTTPBearer: []
      parameters:
      - name: extraction_agent_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
          title: Extraction Agent Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/ExtractRun'
                - type: 'null'
                title: Response Get Latest Run From Ui Api V1 Extraction Runs Latest From Ui Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/runs/by-job/{job_id}:
    get:
      tags:
      - LlamaExtract
      summary: Get Run By Job Id
      operationId: get_run_by_job_id_api_v1_extraction_runs_by_job__job_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Job Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractRun'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/runs/{run_id}:
    get:
      tags:
      - LlamaExtract
      summary: Get Run
      operationId: get_run_api_v1_extraction_runs__run_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractRun'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - LlamaExtract
      summary: Delete Extraction Run
      operationId: delete_extraction_run_api_v1_extraction_runs__run_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/run:
    post:
      tags:
      - LlamaExtract
      summary: Extract Stateless
      description: Stateless extraction using a default agent in the user's default project; requires `data_schema`, `config`, and one of `file_id` / `text` / base64 file data.
      operationId: extract_stateless_api_v1_extraction_run_post
      security:
      - HTTPBearer: []
      parameters:
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractStatelessRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/extraction-agents:
    post:
      tags:
      - LlamaExtract
      summary: Create Extraction Agent
      operationId: create_extraction_agent_api_v1_extraction_extraction_agents_post
      security:
      - HTTPBearer: []
      parameters:
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractAgentCreate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - LlamaExtract
      summary: List Extraction Agents
      operationId: list_extraction_agents_api_v1_extraction_extraction_agents_get
      security:
      - HTTPBearer: []
      parameters:
      - name: include_default
        in: query
        required: false
        schema:
          type: boolean
          description: Whether to include default agents in the results
          default: false
          title: Include Default
        description: Whether to include default agents in the results
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExtractAgent'
                title: Response List Extraction Agents Api V1 Extraction Extraction Agents Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/extraction-agents/schema/validation:
    post:
      tags:
      - LlamaExtract
      summary: Validate Extraction Schema
      description: Validate an extraction agent schema; returns the normalized schema or raises 400.
      operationId: validate_extraction_schema_api_v1_extraction_extraction_agents_schema_validation_post
      security:
      - HTTPBearer: []
      parameters:
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractSchemaValidateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractSchemaValidateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/extraction-agents/schema/generate:
    post:
      tags:
      - LlamaExtract
      summary: Generate Extraction Schema
      description: Generate or refine an extraction agent schema from a file, natural-language prompt, or existing schema.
      operationId: generate_extraction_schema_api_v1_extraction_extraction_agents_schema_generate_post
      security:
      - HTTPBearer: []
      parameters:
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractSchemaGenerateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractSchemaGenerateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/extraction-agents/by-name/{name}:
    get:
      tags:
      - LlamaExtract
      summary: Get Extraction Agent By Name
      operationId: get_extraction_agent_by_name_api_v1_extraction_extraction_agents_by_name__name__get
      deprecated: true
      security:
      - HTTPBearer: []
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
          title: Name
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/extraction-agents/default:
    get:
      tags:
      - LlamaExtract
      summary: Get Or Create Default Extraction Agent
      description: Get or create the default extraction agent for the current project (empty schema, default config).
      operationId: get_or_create_default_extraction_agent_api_v1_extraction_extraction_agents_default_get
      security:
      - HTTPBearer: []
      parameters:
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/extraction/extraction-agents/{extraction_agent_id}:
    get:
      tags:
      - LlamaExtract
      summary: Get Extraction Agent
      operationId: get_extraction_agent_api_v1_extraction_extraction_agents__extraction_agent_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: extraction_agent_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Extraction Agent Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - LlamaExtract
      summary: Delete Extraction Agent
      operationId: delete_extraction_agent_api_v1_extraction_extraction_agents__extraction_agent_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: extraction_agent_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Extraction Agent Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - LlamaExtract
      summary: Update Extraction Agent
      operationId: update_extraction_agent_api_v1_extraction_extraction_agents__extraction_agent_id__put
      security:
      - HTTPBearer: []
      parameters:
      - name: extraction_agent_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Extraction Agent Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractAgentUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ExtractModels:
      type: string
      enum:
      - openai-gpt-4-1
      - openai-gpt-4-1-mini
      - openai-gpt-4-1-nano
      - openai-gpt-5
      - openai-gpt-5-mini
      - gemini-2.0-flash
      - gemini-2.5-flash
      - gemini-2.5-flash-lite
      - gemini-2.5-pro
      - openai-gpt-4o
      - openai-gpt-4o-mini
      title: ExtractModels
      description: Extract model options.
    ExtractStatelessRequest:
      properties:
        webhook_configurations:
          anyOf:
          - items:
              $ref: '#/components/schemas/WebhookConfiguration'
            type: array
          - type: 'null'
          title: Webhook Configurations
          description: Outbound webhook endpoints to notify on job status changes
        data_schema:
          anyOf:
          - additionalProperties:
              anyOf:
              - additionalProperties: true
                type: object
              - items: {}
                type: array
              - type: string
              - type: integer
              - type: number
              - type: boolean
              - type: 'null'
            type: object
          - type: string
          title: Data Schema
          description: The schema of the data to extract
        config:
          $ref: '#/components/schemas/ExtractConfig'
          description: The configuration parameters for the extraction
        file_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: File Id
          description: The ID of the file to extract from
        text:
          anyOf:
          - type: string
          - type: 'null'
          title: Text
          description: The text content to extract from
        file:
          anyOf:
          - $ref: '#/components/schemas/FileData'
          - type: 'null'
          description: The file data with base64 content and MIME type
      type: object
      required:
      - data_schema
      - config
      title: ExtractStatelessRequest
      description: Schema for stateless extraction requests.
    ExtractState:
      type: string
      enum:
      - CREATED
      - PENDING
      - SUCCESS
      - ERROR
      title: ExtractState
    FileData:
      properties:
        data:
          type: string
          title: Data
          description: The file content as base64-encoded string
        mime_type:
          type: string
          title: Mime Type
          description: The MIME type of the file (e.g., 'application/pdf', 'text/plain')
      type: object
      required:
      - data
      - mime_type
      title: FileData
      description: Schema for file data with base64 content and MIME type.
    ExtractAgentCreate:
      properties:
        name:
          type: string
          maxLength: 3000
          minLength: 1
          title: Name
          description: The name of the extraction schema
        data_schema:
          anyOf:
          - additionalProperties:
              anyOf:
              - additionalProperties: true
                type: object
              - items: {}
                type: array
              - type: string
              - type: integer
              - type: number
              - type: boolean
              - type: 'null'
            type: object
          - type: string
          title: Data Schema
          description: The schema of the data.
        config:
          $ref: '#/components/schemas/ExtractConfig'
          description: The configuration parameters for the extraction agent.
      type: object
      required:
      - name
      - data_schema
      - config
      title: ExtractAgentCreate
      description: Settings for creating an extraction agent.
    PublicModelName:
      type: string
      enum:
      - openai-gpt-4o
      - openai-gpt-4o-mini
      - openai-gpt-4-1
      - openai-gpt-4-1-mini
      - openai-gpt-4-1-nano
      - openai-gpt-5
      - openai-gpt-5-mini
      - openai-gpt-5-nano
      - openai-text-embedding-3-large
      - openai-text-embedding-3-small
      - openai-whisper-1
      - anthropic-sonnet-3.5
      - anthropic-sonnet-3.5-v2
      - anthropic-sonnet-3.7
      - anthropic-sonnet-4.0
      - anthropic-sonnet-4.5
      - anthropic-haiku-3.5
      - anthropic-haiku-4.5
      - gemini-2.5-flash
      - gemini-3.0-pro
      - gemini-3.1-pro
      - gemini-2.5-pro
      - gemini-2.0-flash
      - gemini-2.0-flash-lite
      - gemini-2.5-flash-lite
      title: PublicModelName
      description: Public model names.
    ExtractSchemaGenerateResponse:
      properties:
        data_schema:
          additionalProperties:
            anyOf:
            - additionalProperties: true
              type: object
            - items: {}
              type: array
            - type: string
            - type: integer
            - type: number
            - type: boolean
            - type: 'null'
          type: object
          title: Data Schema
          description: The generated JSON schema
      type: object
      required:
      - data_schema
      title: ExtractSchemaGenerateResponse
      description: Response schema for schema generation.
    ExtractSchemaGenerateRequest:
      properties:
        prompt:
          anyOf:
          - type: string
          - type: 'null'
   

# --- truncated at 32 KB (59 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/llamaparse/refs/heads/main/openapi/llamaparse-llamaextract-api-openapi.yml