LlamaParse Parsing API

The Parsing API from LlamaParse — 14 operation(s) for parsing.

Operations 14

GET /api/v1/parsing/job/{job_id}/result/image/{name} Get Job Image Result #
GET /api/v1/parsing/supported_file_extensions Get Supported File Extensions #
POST /api/v1/parsing/screenshot Screenshot #
POST /api/v1/parsing/upload Upload File #
GET /api/v1/parsing/job/{job_id} Get Job #
GET /api/v1/parsing/job/{job_id}/parameters Get Job Parameters #
GET /api/v1/parsing/job/{job_id}/details Get Parsing Job Details #
GET /api/v1/parsing/job/{job_id}/result/text Get Job Text Result #
GET /api/v1/parsing/job/{job_id}/result/pdf Get Job Raw Text Result #
GET /api/v1/parsing/job/{job_id}/result/structured Get Job Structured Result #
GET /api/v1/parsing/job/{job_id}/result/xlsx Get Job Raw Xlsx Result #
GET /api/v1/parsing/job/{job_id}/result/markdown Get Job Result #
GET /api/v1/parsing/job/{job_id}/result/json Get Job Json Result #
GET /api/v1/parsing/job/{job_id}/read/{filename} Generate Presigned Url #

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-parsing-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-parsing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Llama Platform Agent Data Parsing 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: Parsing
paths:
  /api/v1/parsing/job/{job_id}/result/image/{name}:
    get:
      tags:
      - Parsing
      summary: Get Job Image Result
      description: Get a job by id
      operationId: get_job_image_result_api_v1_parsing_job__job_id__result_image__name__get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          title: Job Id
      - 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:
            image/jpeg: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/supported_file_extensions:
    get:
      tags:
      - Parsing
      summary: Get Supported File Extensions
      description: Get a list of supported file extensions
      operationId: get_supported_file_extensions_api_v1_parsing_supported_file_extensions_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/LlamaParseSupportedFileExtensions'
                type: array
                title: Response Get Supported File Extensions Api V1 Parsing Supported File Extensions Get
  /api/v1/parsing/screenshot:
    post:
      tags:
      - Parsing
      summary: Screenshot
      operationId: screenshot_api_v1_parsing_screenshot_post
      security:
      - HTTPBearer: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_screenshot_api_v1_parsing_screenshot_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ParsingJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/upload:
    post:
      tags:
      - Parsing
      summary: Upload File
      operationId: upload_file_api_v1_parsing_upload_post
      security:
      - HTTPBearer: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project Id
      - name: session
        in: cookie
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Session
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_upload_file_api_v1_parsing_upload_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ParsingJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}:
    get:
      tags:
      - Parsing
      summary: Get Job
      description: Get a job by id
      operationId: get_job_api_v1_parsing_job__job_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          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/ParsingJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/parameters:
    get:
      tags:
      - Parsing
      summary: Get Job Parameters
      description: Get a job by id
      operationId: get_job_parameters_api_v1_parsing_job__job_id__parameters_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          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:
                title: Response Get Job Parameters Api V1 Parsing Job  Job Id  Parameters Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/details:
    get:
      tags:
      - Parsing
      summary: Get Parsing Job Details
      description: Get a parsing job's status, parameters (API keys redacted), telemetry, and session logs.
      operationId: get_parsing_job_details_api_v1_parsing_job__job_id__details_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          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:
                title: Response Get Parsing Job Details Api V1 Parsing Job  Job Id  Details Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/result/text:
    get:
      tags:
      - Parsing
      summary: Get Job Text Result
      description: 'Get a job by id. Deprecated: `credits_used` and `job_credits_usage` will be removed in a future release.'
      operationId: get_job_text_result_api_v1_parsing_job__job_id__result_text_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          title: Job Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project 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/ParsingJobTextResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/result/pdf:
    get:
      tags:
      - Parsing
      summary: Get Job Raw Text Result
      description: Get a job by id
      operationId: get_job_raw_text_result_api_v1_parsing_job__job_id__result_pdf_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          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: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/result/structured:
    get:
      tags:
      - Parsing
      summary: Get Job Structured Result
      description: 'Get a job by id. Deprecated: `credits_used` and `job_credits_usage` will be removed in a future release.'
      operationId: get_job_structured_result_api_v1_parsing_job__job_id__result_structured_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          title: Job Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project 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/ParsingJobStructuredResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/result/xlsx:
    get:
      tags:
      - Parsing
      summary: Get Job Raw Xlsx Result
      description: Get a job by id
      operationId: get_job_raw_xlsx_result_api_v1_parsing_job__job_id__result_xlsx_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          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: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/result/markdown:
    get:
      tags:
      - Parsing
      summary: Get Job Result
      description: 'Get a job by id. Deprecated: `credits_used` and `job_credits_usage` will be removed in a future release.'
      operationId: get_job_result_api_v1_parsing_job__job_id__result_markdown_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          title: Job Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project 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/ParsingJobMarkdownResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/result/json:
    get:
      tags:
      - Parsing
      summary: Get Job Json Result
      description: 'Get a job by id. Deprecated: `credits_used` and `job_credits_usage` will be removed in a future release.'
      operationId: get_job_json_result_api_v1_parsing_job__job_id__result_json_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          title: Job Id
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Organization Id
      - name: project_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Project 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/ParsingJobJsonResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/parsing/job/{job_id}/read/{filename}:
    get:
      tags:
      - Parsing
      summary: Generate Presigned Url
      description: Generate a presigned URL for a job
      operationId: generate_presigned_url_api_v1_parsing_job__job_id__read__filename__get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          title: Job Id
      - name: filename
        in: path
        required: true
        schema:
          type: string
          title: Filename
      - 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/PresignedUrl'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Body_upload_file_api_v1_parsing_upload_post:
      properties:
        file:
          anyOf:
          - type: string
            format: binary
          - type: 'null'
          title: File
        adaptive_long_table:
          type: boolean
          title: Adaptive Long Table
          default: false
        annotate_links:
          type: boolean
          title: Annotate Links
          default: false
        auto_mode:
          type: boolean
          title: Auto Mode
          default: false
        auto_mode_trigger_on_image_in_page:
          type: boolean
          title: Auto Mode Trigger On Image In Page
          default: false
        auto_mode_trigger_on_table_in_page:
          type: boolean
          title: Auto Mode Trigger On Table In Page
          default: false
        auto_mode_trigger_on_text_in_page:
          type: string
          title: Auto Mode Trigger On Text In Page
        auto_mode_trigger_on_regexp_in_page:
          type: string
          title: Auto Mode Trigger On Regexp In Page
        auto_mode_configuration_json:
          type: string
          title: Auto Mode Configuration Json
        azure_openai_api_version:
          type: string
          title: Azure Openai Api Version
        azure_openai_deployment_name:
          type: string
          title: Azure Openai Deployment Name
        azure_openai_endpoint:
          type: string
          title: Azure Openai Endpoint
        azure_openai_key:
          type: string
          title: Azure Openai Key
        bbox_bottom:
          type: number
          title: Bbox Bottom
        bbox_left:
          type: number
          title: Bbox Left
        bbox_right:
          type: number
          title: Bbox Right
        bbox_top:
          type: number
          title: Bbox Top
        compact_markdown_table:
          type: boolean
          title: Compact Markdown Table
          default: false
        disable_ocr:
          type: boolean
          title: Disable Ocr
          default: false
        disable_reconstruction:
          type: boolean
          title: Disable Reconstruction
          default: false
        disable_image_extraction:
          type: boolean
          title: Disable Image Extraction
          default: false
        do_not_cache:
          type: boolean
          title: Do Not Cache
          default: false
        do_not_unroll_columns:
          type: boolean
          title: Do Not Unroll Columns
          default: false
        extract_charts:
          type: boolean
          title: Extract Charts
          default: false
        guess_xlsx_sheet_name:
          type: boolean
          title: Guess Xlsx Sheet Name
          default: false
        high_res_ocr:
          type: boolean
          title: High Res Ocr
          default: false
        html_make_all_elements_visible:
          type: boolean
          title: Html Make All Elements Visible
          default: false
        layout_aware:
          type: boolean
          title: Layout Aware
          default: false
        specialized_chart_parsing_agentic:
          type: boolean
          title: Specialized Chart Parsing Agentic
          default: false
        specialized_chart_parsing_plus:
          type: boolean
          title: Specialized Chart Parsing Plus
          default: false
        specialized_chart_parsing_efficient:
          type: boolean
          title: Specialized Chart Parsing Efficient
          default: false
        specialized_image_parsing:
          type: boolean
          title: Specialized Image Parsing
          default: false
        precise_bounding_box:
          type: boolean
          title: Precise Bounding Box
          default: false
        line_level_bounding_box:
          type: boolean
          title: Line Level Bounding Box
          default: false
        html_remove_fixed_elements:
          type: boolean
          title: Html Remove Fixed Elements
          default: false
        html_remove_navigation_elements:
          type: boolean
          title: Html Remove Navigation Elements
          default: false
        http_proxy:
          type: string
          title: Http Proxy
        input_s3_path:
          type: string
          title: Input S3 Path
          default: ''
        input_s3_region:
          type: string
          title: Input S3 Region
          default: ''
        input_url:
          type: string
          title: Input Url
        invalidate_cache:
          type: boolean
          title: Invalidate Cache
          default: false
        language:
          items:
            $ref: '#/components/schemas/ParserLanguages'
          type: array
          title: Language
          default:
          - en
        extract_layout:
          type: boolean
          title: Extract Layout
          default: false
        max_pages:
          anyOf:
          - type: integer
          - type: 'null'
          title: Max Pages
        merge_tables_across_pages_in_markdown:
          type: boolean
          title: Merge Tables Across Pages In Markdown
          default: false
        outlined_table_extraction:
          type: boolean
          title: Outlined Table Extraction
          default: false
        aggressive_table_extraction:
          type: boolean
          title: Aggressive Table Extraction
          default: false
        output_pdf_of_document:
          type: boolean
          title: Output Pdf Of Document
          default: false
        output_s3_path_prefix:
          type: string
          title: Output S3 Path Prefix
          default: ''
        output_s3_region:
          type: string
          title: Output S3 Region
          default: ''
        page_prefix:
          type: string
          title: Page Prefix
          default: ''
        page_separator:
          type: string
          title: Page Separator
        page_suffix:
          type: string
          title: Page Suffix
          default: ''
        preserve_layout_alignment_across_pages:
          type: boolean
          title: Preserve Layout Alignment Across Pages
          default: false
        preserve_very_small_text:
          type: boolean
          title: Preserve Very Small Text
          default: false
        skip_diagonal_text:
          type: boolean
          title: Skip Diagonal Text
          default: false
        spreadsheet_extract_sub_tables:
          type: boolean
          title: Spreadsheet Extract Sub Tables
          default: true
        spreadsheet_force_formula_computation:
          type: boolean
          title: Spreadsheet Force Formula Computation
          default: false
        inline_images_in_markdown:
          type: boolean
          title: Inline Images In Markdown
          default: false
        structured_output:
          type: boolean
          title: Structured Output
          default: false
        structured_output_json_schema:
          type: string
          title: Structured Output Json Schema
        structured_output_json_schema_name:
          type: string
          title: Structured Output Json Schema Name
        take_screenshot:
          type: boolean
          title: Take Screenshot
          default: false
        target_pages:
          type: string
          title: Target Pages
          default: ''
        vendor_multimodal_api_key:
          type: string
          title: Vendor Multimodal Api Key
          default: ''
        vendor_multimodal_model_name:
          type: string
          title: Vendor Multimodal Model Name
        model:
          type: string
          title: Model
        webhook_url:
          type: string
          title: Webhook Url
          default: ''
        webhook_configurations:
          type: string
          title: Webhook Configurations
          default: ''
        preset:
          type: string
          title: Preset
          default: ''
        parse_mode:
          anyOf:
          - $ref: '#/components/schemas/ParsingMode'
          - type: 'null'
        page_error_tolerance:
          type: number
          title: Page Error Tolerance
          default: 0.05
        replace_failed_page_mode:
          anyOf:
          - $ref: '#/components/schemas/FailPageMode'
          - type: 'null'
        replace_failed_page_with_error_message_prefix:
          type: string
          title: Replace Failed Page With Error Message Prefix
          default: ''
        replace_failed_page_with_error_message_suffix:
          type: string
          title: Replace Failed Page With Error Message Suffix
          default: ''
        system_prompt:
          type: string
          title: System Prompt
          default: ''
        system_prompt_append:
          type: string
          title: System Prompt Append
          default: ''
        user_prompt:
          type: string
          title: User Prompt
          default: ''
        job_timeout_in_seconds:
          type: number
          title: Job Timeout In Seconds
        job_timeout_extra_time_per_page_in_seconds:
          type: number
          title: Job Timeout Extra Time Per Page In Seconds
        strict_mode_image_extraction:
          type: boolean
          title: Strict Mode Image Extraction
          default: false
        strict_mode_image_ocr:
          type: boolean
          title: Strict Mode Image Ocr
          default: false
        strict_mode_reconstruction:
          type: boolean
          title: Strict Mode Reconstruction
          default: false
        strict_mode_buggy_font:
          type: boolean
          title: Strict Mode Buggy Font
          default: false
        save_images:
          type: boolean
          title: Save Images
          default: true
        ignore_document_elements_for_layout_detection:
          type: boolean
          title: Ignore Document Elements For Layout Detection
          default: false
        keep_page_separator_when_merging_tables:
          type: boolean
          title: Keep Page Separator When Merging Tables
          default: false
        output_tables_as_HTML:
          type: boolean
          title: Output Tables As Html
          default: false
        markdown_table_multiline_header_separator:
          type: string
          title: Markdown Table Multiline Header Separator
        use_vendor_multimodal_model:
          type: boolean
          title: Use Vendor Multimodal Model
          default: false
        bounding_box:
          type: string
          title: Bounding Box
          default: ''
        gpt4o_mode:
          type: boolean
          title: Gpt4O Mode
          default: false
        gpt4o_api_key:
          type: string
          title: Gpt4O Api Key
          default: ''
        complemental_formatting_instruction:
          type: string
          title: Complemental Formatting Instruction
        content_guideline_instruction:
          type: string
          title: Content Guideline Instruction
        premium_mode:
          type: boolean
          title: Premium Mode
          default: false
        is_formatting_instruction:
          type: boolean
          title: Is Formatting Instruction
          default: true
        continuous_mode:
          type: boolean
          title: Continuous Mode
          default: false
        parsing_instruction:
          type: string
          title: Parsing Instruction
          default: ''
        fast_mode:
          type: boolean
          title: Fast Mode
          default: false
        formatting_instruction:
          type: string
          title: Formatting Instruction
        hide_headers:
          type: boolean
          title: Hide Headers
          default: false
        hide_footers:
          type: boolean
          title: Hide Footers
          default: false
        page_header_prefix:
          type: string
          title: Page Header Prefix
        page_header_suffix:
          type: string
          title: Page Header Suffix
        page_footer_prefix:
          type: string
          title: Page Footer Prefix
        page_footer_suffix:
          type: string
          title: Page Footer Suffix
        remove_hidden_text:
          type: boolean
          title: Remove Hidden Text
          default: false
        presentation_out_of_bounds_content:
          type: boolean
          title: Presentation Out Of Bounds Content
          default: false
        presentation_skip_embedded_data:
          type: boolean
          title: Presentation Skip Embedded Data
          default: false
        extract_printed_page_number:
          type: boolean
          title: Extract Printed Page Number
          default: false
        tier:
          type: string
          title: Tier
        version:
          type: string
          title: Version
      type: object
      title: Body_upload_file_api_v1_parsing_upload_post
    ParserLanguages:
      type: string
      enum:
      - af
      - az
      - bs
      - cs
      - cy
      - da
      - de
      - en
      - es
      - et
      - fr
      - ga
      - hr
      - hu
      - id
      - is
      - it
      - ku
      - la
      - lt
      - lv
      - mi
      - ms
      - mt
      - nl
      - 'no'
      - oc
      - pi
      - pl
      - pt
      - ro
      - rs_latin
      - sk
      - sl
      - sq
      - sv
      - sw
      - tl
      - tr
      - uz
      - vi
      - ar
      - fa
      - ug
      - ur
      - bn
      - as
      - mni
      - ru
      - rs_c

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