Developers | Reducto — The Agentic Document Platform API
Studio

Customers

Pricing
Introducing Deep Extract: the most accurate structured document extraction agent yet
Reducto API

One API for
every document

Parse, extract, classify, split, and edit 30+ file types. Production-ready structured JSON in minutes, not months.

from reducto import Reducto

client = Reducto()
result = client.parse.run(
    input="https://cdn.reducto.ai/samples/fidelity-example.pdf"
)

for chunk in result.result.chunks:
    print(chunk.content)
Quickstart

Get started in five minutes

From sign-up to structured JSON output. No infrastructure to set up, no models to manage.

01

Get your API key

Sign up at studio.reducto.ai and create an API key. Set it as an environment variable.

export REDUCTO_API_KEY="your_api_key_here"
02

Install the SDK

pip install reducto
03

Parse your first document

A few lines of code to convert any document into structured JSON with text, tables, and figures.

from reducto import Reducto

client = Reducto()
result = client.parse.run(
    input="https://cdn.reducto.ai/samples/fidelity-example.pdf"
)

print(f"Processed {result.usage.num_pages} pages")
for chunk in result.result.chunks:
    print(chunk.content)
04

Use the structured output

Every response returns chunks with typed blocks (Title, Table, Text, Figure) plus bounding box coordinates and a link to inspect results in Studio.

{
  "job_id": "5df31070-...",
  "usage": { "num_pages": 3, "credits": 4.0 },
  "result": {
    "chunks": [{
      "content": "## Your Portfolio Value: $274,222.20\n...",
      "blocks": [{
        "type": "Table",
        "bbox": { "page": 1, "left": 0.516 }
      }]
    }]
  },
  "studio_link": "https://studio.reducto.ai/job/..."
}
View the full quickstart guide
Platform

The full document lifecycle

Five API endpoints plus a visual Studio for building, testing, and deploying workflows. Supports 30+ file types.

SDKs & Tools

Build your way

SDKs, CLI, and MCP integrations. Pick the tools that fit your workflow.

Enterprise Grade

Built for production

3B+ pages processed. Autoscaling infrastructure with dedicated support for enterprise customers.

  • SOC 2 Type II & HIPAA

    Audited security controls with BAA available on Growth and Enterprise tiers.

  • Deploy anywhere

    SaaS, hybrid VPC, full VPC, or air-gapped on-premises. EU and AU regional endpoints available.

  • Zero data retention

    Zero data retention policy available. 99.9%+ uptime SLA with dedicated enterprise support.

Resources

Everything you need

CTA patternReducto logo

Get started today.

Reducto logoLLM Center