Overview
A Block represents a distinct content element within a document, such as a paragraph of text, a heading, a table, or a figure. Blocks are the fundamental units that make up chunks in parsed documents.Block Object Structure
string
The type of object. Always “block”.
string
A unique identifier for the block, deterministically generated as a hash of the block content.
string
The type of block. Possible values include:
text: Regular text contentheading: Section or document headingssection_heading: Subsection headingstable: Tabular data with rows and columnsfigure: Images, charts, or diagrams
string
The textual content of the block, formatted according to the target format specified in the parse request.
object
Additional details specific to the block type. The structure varies depending on the block type.
object
Metadata about the block.
array
An array of points defining the polygon that bounds the block on the page.
Each point is an object with
x and y coordinates.object
A simplified rectangular bounding box for the block, derived from the polygon.

