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 Source Policy feature allows you to precisely control which domains or sections of a site
Parallel can access during web research and to apply a freshness constraint. It’s available for
the Task, Search, and Monitor APIs and lets you tailor search results by specifying domains or
domain/path prefixes to include or exclude and by setting a start date so results are limited to
recent content.
.md to its URL or sending Accept: text/markdown.For Search and Extract, use /v1/search and /v1/extract for all new integrations and agent tool calls. Use /v1beta/search and /v1beta/extract only when maintaining an existing integration that already uses them. Do not substitute /v1 for the documented FindAll or Ingest endpoint paths.Configuration
You can configure source control by setting the following parameters:
Specifying an apex domain such as
example.com will automatically include all its
subdomains (e.g., www.example.com, blog.example.com, api.example.com).
A domain/path prefix such as example.com/blog matches that path and its descendants on the
domain and its subdomains. Paths are case-sensitive and match at segment boundaries, so
example.com/blog matches /blog and /blog/post, but not /blogroll. Trailing slashes are
ignored and dot segments are normalized.
Source filter limit
Example
Best Practices
- Use either
include_domainsorexclude_domainsin a single query. Specifyingexclude_domainsis redundant wheninclude_domainsis set, as onlyinclude_domainswill be applied. - Use an apex domain such as
example.comto match that domain and all its subdomains, or specify a subdomain such asdocs.example.comto match that subdomain and any deeper subdomains. A leadingwww.is normalized away. - Add a path to scope the filter to one section of a site, such as
docs.example.com/api. Path matching is case-sensitive and occurs at segment boundaries. - Use a bare domain extension beginning with a period, such as
.org,.gov, or.co.uk, to match that extension. Literal wildcard syntax such as*.orgis not supported. - Do not include schemes (
http://,https://), ports (example.com:443), query strings, or fragments. - Although there is a maximum of 200 entries, carefully using specific and targeted filters will give better results.