LandingAIOpen Playground
Developer Track

Build with the ADE API

Parse, Extract, and automate document processing from your code.

This module

Set up your development environment. make your first API call and choose an SDK.

1Step 1

Choose your toolkit

Everything you need to start parsing and extracting documents programmatically.

$ curl -X POST \
  'https://api.va.landing.ai/v1/ade/parse' \
  -H 'Authorization: Bearer $API_KEY' \
  -F 'document=@invoice.pdf'
RESPONSE
{
  "markdown": "# Invoice INV-2026...",
  "chunks": [{ type: "table", ... }, ...],
  "grounding": { /* element IDs → page + bbox */ },
  "splits": [{ class: "full", pages: [0, 1] }],
  "metadata": { "page_count": 2, "credit_usage": 1.0 }
}
Featured read · 4 chapters

The ADE Storybook

A developer's guide to taming documents — walk through parsing, splitting, grounding, and extraction patterns with real code you can ship.

Start reading
2Step 2 · Find your fit

What are you building?

Pick the pattern that matches your use case — we'll point you at the right guide.

🔍 Search & RAG📑 Field extraction
Find your use case
Documentation · Playground · Pricing