Cohere Parse 5: what it is, how it works, and what it costs

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited August 29, 2026

Expert Verified
Cohere Parse 5 turning a document into a structured table

What Cohere Parse 5 actually is

Cohere is the enterprise AI company known for its Command language models, its Embed and Rerank search models, and a heavy focus on private, sovereign deployment. Parse is its entry into document parsing, and Parse 5 (parse-v5.0) is the current version, announced on August 27, 2026 under the line "enterprise document intelligence at scale."

The job it does is narrow and specific: you give it a page, it gives you back structured, machine-readable data. Cohere describes it as going "beyond OCR" because it doesn't just transcribe characters, it understands tables, forms, diagrams, and embedded images, then returns everything as clean Markdown ready for downstream processing. That output is the point. Markdown is what you feed into a search index, a RAG pipeline, or an AI agent.

The Cohere Parse product page, which frames Parse as a way to turn enterprise documents into AI-ready data, as taken from Cohere

Under the hood it's a compact model: 2.3 billion parameters, about 4.6GB, with an 8,192-token context, built on Cohere's north-micro-vision-instruct architecture. That small size is deliberate. A 2.3B model is cheap to run and fast to serve, and Cohere leaned into both.

How Parse 5 works

The mechanics are simpler than most parsing stacks, because the model does the heavy lifting in one pass. You send a page image, encoded as a base64 data URI, to the co.parse endpoint on Cohere's v2 API. It returns Markdown by default, or a blocks array if you want each text, table, and image region broken out separately with its coordinates.

How Cohere Parse 5 turns a document page into AI-ready Markdown
How Cohere Parse 5 turns a document page into AI-ready Markdown

A minimal call looks like this:

Python
import base64, cohere

co = cohere.ClientV2("COHERE_API_KEY")

with open("document.png", "rb") as f:
    b64 = base64.b64encode(f.read()).decode("utf-8")

response = co.parse(
    model="parse-v5.0",
    document={"type": "image_url", "image_url": f"data:image/png;base64,{b64}"},
)

for page in response.pages:
    print(page.markdown.content)

A few details worth knowing before you build against it. The docs list PDF, PowerPoint, and JPEG as supported formats, but the live endpoint currently takes images only, a data URI or a remote image URL, so raw PDF uploads aren't wired up yet. Image inputs cap out at 20MB, 50 megapixels, or 200MB decoded. And bounding boxes come back only for tables and images, not for every line of text, which is an intentional choice: the model preserves reading order in the Markdown rather than dumping a cloud of coordinates you'd have to reassemble.

It's stable across nine languages (Arabic, English, French, German, Italian, Japanese, Korean, Portuguese, and Spanish), with zero-shot handling of others at lower accuracy. Cohere trained it on business documents from finance, insurance, and scientific work, which is a tell about who it's for.

The benchmark story: it loses on points, wins on price

Here's the part everyone latched onto. Cohere published a benchmark, ParseBench, that scores parsers on three things: how well they extract tables, how faithfully they reproduce text without omissions or hallucinations, and how well they preserve semantic formatting like strike-throughs and italics. And Cohere's own chart shows Parse 5 sitting behind three larger models.

ModelAverageTablesContent faithfulnessSemantic formatting
GPT-5.584.489.387.576.5
Opus 4.884.389.789.074.1
Gemini 3.5 Flash81.887.684.773.2
Cohere Parse 579.287.086.664.0
LlamaParse (cost-effective)78.381.490.962.7
Chandra OCR 2 (open)77.789.283.760.3
Mistral OCR 474.573.989.560.1
Databricks AI Parse72.483.788.345.3
Azure Document Intelligence69.386.084.937.0
Google Document AI57.355.183.733.0
AWS Textract53.382.374.82.8

Publishing a benchmark you don't top is an unusual move, and it's the honest one. Parse 5 is strong on tables and content faithfulness (87.0 and 86.6, close to the frontier models) and weaker on semantic formatting (64.0). It clears the specialist parsers, with what Cohere calls an "over 20-point improvement" on both AWS Textract and Google Document AI. It just isn't the sharpest tool in the shed on raw accuracy.

The argument lives on the second chart. Once you plot score against price, Parse 5 moves into the corner nobody else occupies.

ParseBench score plotted against price per 1,000 pages, with Cohere Parse sitting in the high-quality, low-cost quadrant, as taken from Cohere
ParseBench score plotted against price per 1,000 pages, with Cohere Parse sitting in the high-quality, low-cost quadrant, as taken from Cohere

GPT-5.5 and Opus 4.8 score three to five points higher, but they sit way over on the right, at roughly 40 to 50 times the per-page cost. For a one-off contract review, pay for the accuracy. For an ingestion pipeline chewing through a million invoices a month, five points of formatting fidelity is not worth a 40x bill. That's the bet Parse 5 is making, and for high-volume document processing it's a reasonable one.

The enterprise-tech journalist Sean Kerner summed up the mood around the launch:

"Text, document parsing should be a solved problem at this point right? But it's not.. every few weeks there is another option that claims to make it better. This week it's @cohere Parse 5."

That skepticism is fair. Parsing isn't "solved," and Parse 5 doesn't claim to solve it. It claims to make the cost of doing it at scale a lot lower, which is a narrower and more defensible promise.

Throughput and self-hosting

The other half of the price story is speed. On a single H100 GPU, Parse 5 processes 4.5 pages per second, which works out to 36 pages per second (about 2,160 per minute) on an 8-GPU node. Cohere benchmarked it against open-source parsers served the same way, on vLLM, and it comes out ahead.

Throughput in pages per second: Cohere Parse leads open-source parsers on the same hardware, as taken from Cohere
Throughput in pages per second: Cohere Parse leads open-source parsers on the same hardware, as taken from Cohere

Fast throughput on a small model is what makes the economics work when you self-host. And self-hosting is very much Cohere's angle here. Beyond the standard API, Parse 5 runs as a dedicated Model Vault instance, on Microsoft Foundry, on Amazon SageMaker, or fully private and air-gapped, which matters if you're parsing documents you legally can't send to a third-party API. There's also a free demo Space on Hugging Face if you just want to throw a page at it.

Cohere Parse 5 pricing

Parse 5 has two pricing models, and which one you want depends entirely on volume.

OptionPriceNotes
Cohere API$1.50 / 1,000 pagesPay per page. Rate limit 500 requests/minute. Free trial key allows 1,000 calls/month.
Model Vault, Medium instance$4.00 / hour ($2,500 / month)Dedicated single-tenant instance.
Model Vault, XL instance$7.00 / hour ($4,300 / month)Higher-throughput dedicated instance.

The per-page rate is the headline, and at $1.50 per 1,000 pages it's genuinely one of the cheaper hosted options. The dedicated instances are where the savings compound. Cohere's math: at 50% GPU utilization, Model Vault runs 23% cheaper per page than the API, and at full utilization the gap grows to 61%.

Their worked example makes it concrete. An accounts-payable workflow processing ~13 million pages a month on Model Vault instead of the API saves roughly $12,000 a month, or $144,000 a year. Measured against a hyperscaler parser priced at $10 per 1,000 pages, that single workflow saves around $1.47 million annually. Those are Cohere's numbers on Cohere's assumptions, so treat them as a best case, but the direction is real: at high volume, per-page parsing costs add up fast, and a cheaper model is a big lever.

What it can't do

Being honest about the limits is what makes the price argument trustworthy, so here they are. Parse 5 outputs Markdown only, not structured JSON, so if you need a strict schema you're parsing the Markdown yourself downstream. It returns no confidence scores, so you can't automatically flag low-certainty extractions for human review. And it doesn't classify document elements like headers, footers, or font hierarchy. None of these is a dealbreaker for a bulk-ingestion job, but each one is a gap if you were hoping to drop it into a workflow that needs certainty flags or a rigid output shape.

Where Parse 5 fits (and where it doesn't)

This is the part that trips people up, so it's worth being clear. Parse 5 is a parsing layer. It turns pages into text. On its own it doesn't answer a single question. To get from "documents" to "an AI that helps someone," you chain it into a retrieval stack: parse the docs, embed the chunks into vectors, rerank the matches, then hand the best passages to a model to generate a grounded answer. Cohere sells all three pieces, bundled as its Compass platform.

The document-to-answer stack: Parse turns docs to Markdown, Embed vectorizes them, Rerank sorts the matches, then a model generates a grounded answer
The document-to-answer stack: Parse turns docs to Markdown, Embed vectorizes them, Rerank sorts the matches, then a model generates a grounded answer

That's a great toolkit if you're a platform team building bespoke document intelligence and you want maximum control over every stage. It's a lot of assembly if your actual goal is something more everyday, like an AI that reads your help center and past tickets and resolves customer questions. In that case you're not really shopping for a parser at all, you're shopping for the finished worker, and building the parse-embed-rerank-generate pipeline yourself is a detour.

Deciding whether you need a parsing model or a ready-to-work AI teammate
Deciding whether you need a parsing model or a ready-to-work AI teammate

The distinction is the same one that separates a car engine from a car. Parse 5 is a very good, very cheap engine. Whether you want to build the rest of the car around it is the real question.

Try eesel for support that just answers

If your interest in a parsing model comes from a support problem, that engine-versus-car gap is exactly the one eesel closes. eesel is an AI teammate platform, and its AI helpdesk teammate is a ready-to-work version of the whole stack: it connects directly to your help center, Confluence, Google Docs, and past tickets, learns from them, and resolves tickets inside Zendesk, Freshdesk, Gorgias, Slack, or a shareable chat link. No parsing pipeline to wire together, no vector database to run.

eesel's onboarding, connecting the AI teammate to a helpdesk and knowledge sources
eesel's onboarding, connecting the AI teammate to a helpdesk and knowledge sources

The part that's hardest to fake is the confidence to turn it on. We've spent years running AI on live support queues, and we've watched a confident-sounding bot quietly give wrong answers, which is why eesel simulates every rollout against your historical tickets first, so you see the resolution rate and the exact replies it would have sent before it touches a real customer. Parse 5 might be a piece of how a team like ours moves documents around. It isn't the teammate. You can try eesel free.

Frequently Asked Questions

What is Cohere Parse 5?
Cohere Parse 5 (model id parse-v5.0) is a 2.3-billion-parameter vision language model that turns document pages into clean Markdown, with tables rendered as HTML and bounding boxes for visual elements. It's built to feed RAG pipelines, search indexes, and AI agents at high volume.
How much does Cohere Parse 5 cost?
On the Cohere API, Parse 5 pricing is $1.50 per 1,000 pages. For heavy workloads you can run it as a dedicated Model Vault instance (Medium at $4.00/hour, XL at $7.00/hour), which Cohere says cuts per-page cost by 23-61% at scale. Compare that against an agent-vs-human cost breakdown before you commit.
Is Cohere Parse 5 more accurate than GPT-5.5 or Gemini 3.5 Flash?
No. On Cohere's own ParseBench, Parse 5 scores 79.2 versus 84.4 for GPT-5.5 and 81.8 for Gemini 3.5 Flash. Parse's pitch isn't top accuracy, it's the best score-per-dollar, since those frontier models cost far more per page.
What file types does Cohere Parse 5 support?
The model handles PDF, PowerPoint, and JPEG pages, though the live API currently accepts images (a base64 data URI or an image URL) rather than raw PDF uploads. It's stable across nine languages and outputs Markdown only, not JSON. For turning that content into answers, see our guide to AI documentation search.
Do I need a document parser to build an AI support agent?
Usually not. A parser like Cohere Parse 5 is a building block for teams assembling their own pipeline. If your goal is an AI that resolves tickets, a platform like eesel already connects to your help center and past tickets and answers directly, no parsing layer to build.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
Skywork AI pricing breakdown illustration
Trending

Skywork AI pricing: what it really costs in 2026

A plain-English breakdown of Skywork AI pricing: the $1 trial, the credit system, the $19.99 Pro plan, and the billing gotchas to watch before you pay.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieJul 20, 2026
Karloe pricing illustration showing an AI operator presenting a report
Tools & Comparisons

Karloe pricing 2026: how the credit model actually works

A full breakdown of Karloe pricing: the credit unit, the Free and Team plans, top-ups, and the one thing that makes your bill different from every other AI tool.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieAug 27, 2026
Illustrated lineup of AI inference chips and data-center racks as Groq 3 LPX alternatives
Trending

The 8 best Groq 3 LPX alternatives in 2026

The best Groq 3 LPX alternatives for fast AI inference in 2026, from Cerebras and SambaNova to Google TPU, AWS Trainium, AMD, and more.

Rama Adi NugrahaRama Adi NugrahaAug 29, 2026
NVIDIA Groq 3 LPX rack-scale inference accelerator banner
Trending

Groq 3 LPX: NVIDIA's low-latency inference accelerator, explained

What NVIDIA Groq 3 LPX is, how its LPU-plus-GPU split works, what the 35x-per-megawatt claims mean, and what the Groq licensing deal actually changes.

Alicia Kirana UtomoAlicia Kirana UtomoAug 29, 2026
Hand-drawn illustration of a kitesurfer flying a browser window as a kite beside the Cloudflare cloud mark, with a small server stack on the shore
Trending

Cloudflare Kitesurf: the agent browser that trades speed for scale

Cloudflare built a browser for AI agents in twelve weeks, with no Chromium underneath. It uses 3 to 7x less CPU and memory than Chromium and takes 1.7 to 1.8x longer on the clock. Browser Run bills the clock. Here is the architecture, the benchmark read honestly, the compatibility gate, and the arithmetic on who this is actually cheaper for.

Rama Adi NugrahaRama Adi NugrahaAug 24, 2026
One plugin package feeding several different AI coding agents at once
Trending

Agent Plugins: the new open standard for AI agent extensions

Agent Plugins 1.0.0 shipped on 6 August 2026 with AWS, Cursor, Microsoft, OpenAI and Vercel behind it. Here is what it standardizes, and what it leaves out.

Rama Adi NugrahaRama Adi NugrahaAug 6, 2026
Skywork AI super-agent workspace illustration
Trending

What is Skywork AI? The super-agent workspace, explained

Skywork AI is a general-purpose AI super-agent that builds slides, docs, sheets, sites and videos. Here's what it does, how it works, and what it costs.

Alicia Kirana UtomoAlicia Kirana UtomoJul 20, 2026
Tasklet AI review 2026 hero banner
Trending

Tasklet AI review 2026: is the agent platform worth it?

A hands-on Tasklet AI review for 2026: what the AI agent platform actually does, how its credit pricing behaves under real workloads, where it shines, and where it falls short.

Alicia Kirana UtomoAlicia Kirana UtomoJul 17, 2026
Shadow, the AI interface for Mac, review cover illustration
Trending

Shadow review (2026): the AI interface for Mac

My hands-on Shadow review: the bot-free AI interface for Mac that transcribes meetings on-device, runs custom Skills from a shortcut, and costs $8 a month.

Alicia Kirana UtomoAlicia Kirana UtomoJul 8, 2026

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free