Documentation Index
Fetch the complete documentation index at: https://docs.parallel.ai/llms.txt
Use this file to discover all available pages before exploring further.
For AI agents: a documentation index is available at https://docs.parallel.ai/llms.txt. The full text of all docs is at https://docs.parallel.ai/llms-full.txt. You may also fetch any page as Markdown by appending
The .md to its URL or sending Accept: text/markdown.advanced_settings object on the Extract API lets you tune fetch behavior (cached vs live), excerpt sizing, and full content extraction. Most callers don’t need it — the defaults return focused excerpts from the cached index, which works well for the majority of tool-calling and research use cases.
Fields
| Field | Type | Notes | Example |
|---|---|---|---|
| fetch_policy | object | Controls when to return indexed content (faster) vs fetching live content (fresher). Default is to use cached content from the index. Enabling live fetch significantly increases latency. For more info including field details, see Fetch Policy below. | {"max_age_seconds": 3600} |
| excerpt_settings | object | Controls excerpt sizes. Provide max_chars_per_result for fine-grained control, or omit to use defaults. | {"max_chars_per_result": 10000} |
| full_content | bool or object | Controls full content extraction. Defaults to false (disabled). Set to true to enable with defaults, or provide a settings object. | false or {"max_chars_per_result": 50000} |
Fetch Policy
Thefetch_policy parameter controls when to return indexed content (faster) or fetch
fresh content from the source (fresher). Fetching fresh content may take up to a minute
and is subject to rate limits to manage the load on source websites.
| Field | Type | Default | Notes |
|---|---|---|---|
| max_age_seconds | int | dynamic | Maximum age of indexed content in seconds. If older, fetches live. Minimum 600 (10 minutes). If unspecified, uses dynamic policy based on URL and objective. |
| timeout_seconds | number | dynamic | Timeout for fetching live content. If unspecified, uses a dynamic timeout based on URL and content type (typically 15s-60s). |
| disable_cache_fallback | bool | false | If true, returns an error when live fetch fails. If false, falls back to older indexed content. |
Excerpt and Full Content Settings
Bothexcerpt_settings and full_content are configured inside the advanced_settings object.
Enable full content with custom excerpt sizes:
- When
full_contentis enabled, you’ll receive both excerpts and full content in the response - Excerpts are always focused on relevance; full content always starts from the beginning
- Without
objectiveorsearch_queries, excerpts will be redundant with full content. The request still succeeds, but may return less relevant content and may include a warning. max_chars_total(top-level) controls total excerpt size but does not affect full content