Parse Configurations
Create Parse Configuration
List Parse Configurations
Get Parse Configuration
Update Parse Configuration
Delete Parse Configuration
ModelsExpand Collapse
class ParseConfiguration: …
Parse configuration schema.
id: str
Unique identifier for the parse configuration
created_at: datetime
Creation timestamp
name: str
Name of the parse configuration
LlamaParseParameters configuration
images_to_save: Optional[List[Literal["screenshot", "embedded", "layout"]]]
parse_mode: Optional[ParsingMode]
Enum for representing the mode of parsing to be used.
priority: Optional[Literal["low", "medium", "high", "critical"]]
The priority for the request. This field may be ignored or overwritten depending on the organization tier.
replace_failed_page_mode: Optional[FailPageMode]
Enum for representing the different available page error handling modes.
The outbound webhook configurations
webhook_events: Optional[List[Literal["extract.pending", "extract.success", "extract.error", 13 more]]]
List of event names to subscribe to
webhook_headers: Optional[Dict[str, str]]
Custom HTTP headers to include with webhook requests.
webhook_output_format: Optional[str]
The output format to use for the webhook. Defaults to string if none supplied. Currently supported values: string, json
webhook_url: Optional[str]
The URL to send webhook notifications to.
source_id: str
ID of the source
source_type: str
Type of the source (e.g., 'project')
updated_at: datetime
Last update timestamp
version: str
Version of the configuration
creator: Optional[str]
Creator of the configuration
class ParseConfigurationCreate: …
Schema for creating a new parse configuration (API boundary).
name: str
Name of the parse configuration
LlamaParseParameters configuration
images_to_save: Optional[List[Literal["screenshot", "embedded", "layout"]]]
parse_mode: Optional[ParsingMode]
Enum for representing the mode of parsing to be used.
priority: Optional[Literal["low", "medium", "high", "critical"]]
The priority for the request. This field may be ignored or overwritten depending on the organization tier.
replace_failed_page_mode: Optional[FailPageMode]
Enum for representing the different available page error handling modes.
The outbound webhook configurations
webhook_events: Optional[List[Literal["extract.pending", "extract.success", "extract.error", 13 more]]]
List of event names to subscribe to
webhook_headers: Optional[Dict[str, str]]
Custom HTTP headers to include with webhook requests.
webhook_output_format: Optional[str]
The output format to use for the webhook. Defaults to string if none supplied. Currently supported values: string, json
webhook_url: Optional[str]
The URL to send webhook notifications to.
version: str
Version of the configuration
creator: Optional[str]
Creator of the configuration
source_id: Optional[str]
ID of the source
source_type: Optional[str]
Type of the source (e.g., 'project')
class ParseConfigurationQueryResponse: …
Response schema for paginated parse configuration queries.
The list of items.
id: str
Unique identifier for the parse configuration
created_at: datetime
Creation timestamp
name: str
Name of the parse configuration
LlamaParseParameters configuration
images_to_save: Optional[List[Literal["screenshot", "embedded", "layout"]]]
parse_mode: Optional[ParsingMode]
Enum for representing the mode of parsing to be used.
priority: Optional[Literal["low", "medium", "high", "critical"]]
The priority for the request. This field may be ignored or overwritten depending on the organization tier.
replace_failed_page_mode: Optional[FailPageMode]
Enum for representing the different available page error handling modes.
The outbound webhook configurations
webhook_events: Optional[List[Literal["extract.pending", "extract.success", "extract.error", 13 more]]]
List of event names to subscribe to
webhook_headers: Optional[Dict[str, str]]
Custom HTTP headers to include with webhook requests.
webhook_output_format: Optional[str]
The output format to use for the webhook. Defaults to string if none supplied. Currently supported values: string, json
webhook_url: Optional[str]
The URL to send webhook notifications to.
source_id: str
ID of the source
source_type: str
Type of the source (e.g., 'project')
updated_at: datetime
Last update timestamp
version: str
Version of the configuration
creator: Optional[str]
Creator of the configuration
next_page_token: Optional[str]
A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
total_size: Optional[int]
The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.