Sheets
Create Spreadsheet Job
List Spreadsheet Jobs
Get Spreadsheet Job
Get Result Region
Delete Spreadsheet Job
ModelsExpand Collapse
SheetsJob = object { id, configuration, created_at, 14 more }
A spreadsheet parsing job.
configuration: SheetsParsingConfig { extraction_range, flatten_hierarchical_tables, generate_additional_metadata, 5 more }
Configuration applied to the parsing job (inline or resolved from a saved preset).
extraction_range: optional string
A1 notation of the range to extract a single region from. If None, the entire sheet is used.
flatten_hierarchical_tables: optional boolean
Return a flattened dataframe when a detected table is recognized as hierarchical.
generate_additional_metadata: optional boolean
Whether to generate additional metadata (title, description) for each extracted region.
include_hidden_cells: optional boolean
Whether to include hidden cells when extracting regions from the spreadsheet.
sheet_names: optional array of string
The names of the sheets to extract regions from. If empty, all sheets will be processed.
specialization: optional string
Optional specialization mode for domain-specific extraction. Supported values: ‘financial-standard’, ‘financial-enhanced’, ‘financial-precise’. Default None uses the general-purpose pipeline.
Deprecatedconfig: optional SheetsParsingConfig { extraction_range, flatten_hierarchical_tables, generate_additional_metadata, 5 more }
Configuration for spreadsheet parsing and region extraction
extraction_range: optional string
A1 notation of the range to extract a single region from. If None, the entire sheet is used.
flatten_hierarchical_tables: optional boolean
Return a flattened dataframe when a detected table is recognized as hierarchical.
generate_additional_metadata: optional boolean
Whether to generate additional metadata (title, description) for each extracted region.
include_hidden_cells: optional boolean
Whether to include hidden cells when extracting regions from the spreadsheet.
sheet_names: optional array of string
The names of the sheets to extract regions from. If empty, all sheets will be processed.
specialization: optional string
Optional specialization mode for domain-specific extraction. Supported values: ‘financial-standard’, ‘financial-enhanced’, ‘financial-precise’. Default None uses the general-purpose pipeline.
Schema for a file.
expires_at: optional string
The expiration date for the file. Files past this date can be deleted.
purpose: optional string
The intended purpose of the file (e.g., ‘user_data’, ‘parse’, ‘extract’, ‘split’, ‘classify’)
metadata_state_transitions: optional map[unknown]
Per-status entry timestamps. Returned only when requested via ?expand=metadata_state_transitions.
parameters: optional object { webhook_configurations }
Job-time parameters such as webhook configurations.
webhook_configurations: optional array of object { webhook_events, webhook_headers, webhook_output_format, webhook_url }
Webhook configurations for job status notifications.
webhook_events: optional array of "extract.pending" or "extract.success" or "extract.error" or 20 more
Events to subscribe to (e.g. ‘parse.success’, ‘extract.error’). If null, all events are delivered.
webhook_headers: optional map[string]
Custom HTTP headers sent with each webhook request (e.g. auth tokens)
regions: optional array of object { location, region_type, sheet_name, 3 more }
All extracted regions (populated when job is complete)
SheetsParsingConfig = object { extraction_range, flatten_hierarchical_tables, generate_additional_metadata, 5 more }
Configuration for spreadsheet parsing and region extraction
extraction_range: optional string
A1 notation of the range to extract a single region from. If None, the entire sheet is used.
flatten_hierarchical_tables: optional boolean
Return a flattened dataframe when a detected table is recognized as hierarchical.
generate_additional_metadata: optional boolean
Whether to generate additional metadata (title, description) for each extracted region.
include_hidden_cells: optional boolean
Whether to include hidden cells when extracting regions from the spreadsheet.
sheet_names: optional array of string
The names of the sheets to extract regions from. If empty, all sheets will be processed.
specialization: optional string
Optional specialization mode for domain-specific extraction. Supported values: ‘financial-standard’, ‘financial-enhanced’, ‘financial-precise’. Default None uses the general-purpose pipeline.