Skip to content

List Parse Versions

parsing.list_versions() -> ParsingListVersionsResponse
GET/api/v2/parse/versions

List the parse versions accepted by each tier and what latest resolves to.

ReturnsExpand Collapse
class ParsingListVersionsResponse:

Versions accepted by the parse API, grouped by tier.

agentic: List[Literal["2026-09-07", "2026-08-19", "2026-07-24", 41 more]]

Versions for the agentic tier

One of the following:
"2026-09-07"
"2026-08-19"
"2026-07-24"
"2026-07-23"
"2026-07-15"
"2026-06-18"
"2026-06-11"
"2026-06-04"
"2026-06-01"
"2026-05-26"
"2026-05-21"
"2026-05-20"
"2026-05-19"
"2026-05-13"
"2026-05-11"
"2026-05-06"
"2026-05-04"
"2026-04-27"
"2026-04-22"
"2026-04-09"
"2026-04-06"
"2026-04-02"
"2026-03-31"
"2026-03-30"
"2026-03-27"
"2026-03-25"
"2026-03-23"
"2026-03-22"
"2026-03-20"
"2026-03-11"
"2026-03-10"
"2026-03-09"
"2026-03-03"
"2026-03-02"
"2026-02-26"
"2026-02-24"
"2026-01-30"
"2026-01-22"
"2026-01-21"
"2026-01-16"
"2026-01-08"
"2025-12-31"
"2025-12-18"
"2025-12-11"
agentic_plus: List[Literal["2026-08-19", "2026-07-08", "2026-06-18", 37 more]]

Versions for the agentic_plus tier

One of the following:
"2026-08-19"
"2026-07-08"
"2026-06-18"
"2026-06-11"
"2026-06-04"
"2026-06-01"
"2026-05-26"
"2026-05-21"
"2026-05-20"
"2026-05-19"
"2026-05-11"
"2026-05-06"
"2026-05-04"
"2026-05-01"
"2026-04-27"
"2026-04-19"
"2026-04-14"
"2026-04-09"
"2026-04-02"
"2026-03-31"
"2026-03-26"
"2026-03-25"
"2026-03-22"
"2026-03-20"
"2026-03-17"
"2026-03-12"
"2026-03-10"
"2026-03-09"
"2026-03-02"
"2026-02-26"
"2026-02-24"
"2026-01-30"
"2026-01-29"
"2026-01-24"
"2026-01-22"
"2026-01-21"
"2026-01-16"
"2025-12-31"
"2025-12-18"
"2025-12-11"
cost_effective: List[Literal["2026-08-19", "2026-08-11", "2026-08-08", 12 more]]

Versions for the cost_effective tier

One of the following:
"2026-08-19"
"2026-08-11"
"2026-08-08"
"2026-07-23"
"2026-06-26"
"2026-06-18"
"2026-06-17"
"2026-06-11"
"2026-06-08"
"2026-06-05"
"2026-05-28"
"2026-04-09"
"2026-03-31"
"2026-03-27"
"2026-03-25"
fast: List[Literal["2026-06-15", "2025-12-11"]]

Versions for the fast tier

One of the following:
"2026-06-15"
"2025-12-11"
latest: Latest

Version latest currently resolves to, per tier

agentic: str

Version latest resolves to for the agentic tier

agentic_plus: str

Version latest resolves to for the agentic_plus tier

cost_effective: str

Version latest resolves to for the cost_effective tier

fast: str

Version latest resolves to for the fast tier

List Parse Versions

import os
from llama_cloud import LlamaCloud

client = LlamaCloud(
    api_key=os.environ.get("LLAMA_CLOUD_API_KEY"),  # This is the default and can be omitted
)
response = client.parsing.list_versions()
print(response.agentic)
{
  "agentic": [
    "2026-09-07"
  ],
  "agentic_plus": [
    "2026-08-19"
  ],
  "cost_effective": [
    "2026-08-19"
  ],
  "fast": [
    "2026-06-15"
  ],
  "latest": {
    "agentic": "agentic",
    "agentic_plus": "agentic_plus",
    "cost_effective": "cost_effective",
    "fast": "fast"
  }
}
Returns Examples
{
  "agentic": [
    "2026-09-07"
  ],
  "agentic_plus": [
    "2026-08-19"
  ],
  "cost_effective": [
    "2026-08-19"
  ],
  "fast": [
    "2026-06-15"
  ],
  "latest": {
    "agentic": "agentic",
    "agentic_plus": "agentic_plus",
    "cost_effective": "cost_effective",
    "fast": "fast"
  }
}
Note for AI agents: this documentation is built for programmatic access. - Overview of all docs: https://developers.llamaindex.ai/llms.txt - Any page is available as raw Markdown by appending index.md to its URL — e.g. https://developers.llamaindex.ai/llamaparse/parse/getting_started/index.md - Agent-friendly REST search APIs live under https://developers.llamaindex.ai/api/ — search (BM25 full-text), grep (regex), read (fetch a page), and list (browse the doc tree). See https://developers.llamaindex.ai/llms.txt for parameters. - A hosted documentation MCP server is available at https://developers.llamaindex.ai/mcp. If you support MCP, you can ask the user to install it for browsing these docs directly (an alternative to the REST API). Setup: https://developers.llamaindex.ai/for-agents/mcp/ - Other LlamaIndex tooling for agents — the LlamaParse Platform MCP server, agent skills and plugins, and the n8n node — is mapped at https://developers.llamaindex.ai/for-agents/