Tavily Crawl
Walk a site from a root url and return the content of the pages it finds.
url and return the content of the pages it finds. Steer it with natural-language instructions plus regex path and domain filters, and bound it with max_depth, max_breadth and limit. Returns base_url and results[] with url and raw_content. Measured at about 4.5 seconds for a 3-page limit; cost and time grow with the bounds you set, so set them. Use it for broad coverage of one site — documentation, a catalogue, a competitor’s blog. It answers synchronously, which post_firecrawl_crawl does not: that one runs as a background job and suits crawls too large to wait on. For a handful of known pages post_tavily_extract is far cheaper; to size a site before paying to crawl it, run post_tavily_map first.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
The root URL to begin the crawl.
"docs.tavily.com"
Natural language instructions for the crawler.
Maximum number of relevant chunks returned per source.
1 <= x <= 5Max depth of the crawl.
1 <= x <= 5Max number of links to follow per level of the tree.
1 <= x <= 500Total number of links the crawler will process before stopping.
x >= 1Regex patterns to select only URLs with specific path patterns.
Regex patterns to select crawling to specific domains or subdomains.
Regex patterns to exclude URLs with specific path patterns.
Regex patterns to exclude specific domains or subdomains from crawling.
Include external domain links in the final results list.
Include images in the crawl results.
Depth of the extraction process.
basic, advanced Format of the extracted web page content.
markdown, text Include the favicon URL for each result.
Maximum time in seconds to wait for the crawl operation.
10 <= x <= 150Include credit usage information in the response.