Response Structure
Top-Level Fields
Result Types: Full vs URL
Parse can return results in two ways:- Full (inline)
- URL (external)
result.chunks directly.Understanding Chunks
Chunks are the primary output unit, optimized for RAG and embedding workflows.content vs embed
content: Raw extracted content, preserves original textembed: Optimized for vector embeddings, may include:- Table summaries (natural language descriptions)
- Figure summaries (AI-generated descriptions)
embed for your vector database, content for display.
Understanding Blocks
Blocks are the atomic content elements within each chunk. Every paragraph, table, header, and figure is a separate block.Block Types
Block Fields
Bounding Box Coordinates
Every block includes abbox object describing its position on the page.
Coordinate System
All coordinates are normalized to [0, 1] relative to page dimensions:page and original_page differ when using page_range to process a subset of pages. For example, if you process pages 5-10, page 5 becomes page: 1 but original_page: 5.Confidence Scores
Parse provides confidence scores to help you identify potentially problematic extractions.String Confidence
high: Extraction is reliablelow: May need review; consider enabling agentic mode
Granular Confidence
Complete Example
Here’s a complete example showing the full structure:Full Response Example
Full Response Example
Related
Parse Overview
Quick start and basic usage.
Best Practices
Optimize for your document types.
Chunking Methods
Control how content is split.
Table Output Formats
HTML, Markdown, JSON, CSV options.