The Split and Extract a Document endpoint allows you to process a document by splitting it according to specified document types and performing extraction on each split section. This is useful for handling complex documents where different parts of the document need to be analyzed or extracted separately based on defined template schemas. Query Parameters:Documentation Index
Fetch the complete documentation index at: https://docs.pardocs.com/llms.txt
Use this file to discover all available pages before exploring further.
include_coordinates (boolean, optional): When true, the response includes the source location for each extracted value (page number and bounding box). Use this when you need to highlight or reference the exact region in the document where a value was found. Default is false.template_ids (array of strings): A list of template_ids that dictate how the document should be split and extracted. Each ID corresponds to a specific template schema that defines the rules for processing each section of the document.include_coordinates=true
When you pass include_coordinates=true, each extracted field in extracted is an object with the following shape instead of a plain string or number:
value: The extracted text or number (same as the non-coordinate response).page: The 1-based page number where this value was found.bounding_box_coordinates: Normalized bounding box [x1, y1, x2, y2] in the range 0–1 (relative to page width/height), so you can map the value back to a rectangle on the document for highlighting or overlay.include_coordinates is false or omitted, extracted fields remain simple key–value pairs (e.g. "analyst": "최보영").The ID of document to extract.
When true, each extracted field in the response includes the source location: value, page number, and normalized bounding_box_coordinates [x1, y1, x2, y2] (0–1) so you can highlight or reference the exact region in the document.
Include all template_id to extract the document.