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