Tavily - AI Search & Research API

AI-powered web search, crawling, extraction, and deep research

How to use it

  1. Hit Copy the whole skill.
  2. Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
    ChatGPT: make a Project and paste it into Instructions.
    Neither? Paste it at the top of a new chat — it works for that chat.
  3. Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit gooseworks-ai/goose-skills/skills/research-tools/capabilities/web-search-tavily#main ~/.claude/skills/web-search-tavily

For one project only, change the path to .claude/skills/web-search-tavily.

Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text192 lines
web-search-tavily/SKILL.md192 lines14.6 KBpushed 96d agoRawView on GitHub

Tavily - AI Search & Research API

Setup

Read your credentials from ~/.gooseworks/credentials.json:

export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")

If ~/.gooseworks/credentials.json does not exist, tell the user to run: npx gooseworks login

All endpoints use Bearer auth: -H "Authorization: Bearer $GOOSEWORKS_API_KEY"

Comprehensive web search, crawling, content extraction, and deep research.

Capabilities

  • Tavily Search: Execute a search query using Tavily Search
  • Get Research Task Status: Retrieve the status and results of a research task using its request ID (free)
  • Create Research Task: Tavily Research performs comprehensive research on a given topic by conducting multiple searches, analyzing sources, and generating a detailed research report
  • Tavily Extract: Extract web page content from one or more specified URLs using Tavily Extract
  • Tavily Map: Tavily Map traverses websites like a graph and can explore hundreds of paths in parallel with intelligent discovery to generate comprehensive site maps
  • Tavily Crawl: Tavily Crawl is a graph-based website traversal tool that can explore hundreds of paths in parallel with built-in extraction and intelligent discovery

Usage

Tavily Search

Execute a search query using Tavily Search.

Parameters:

  • query* (string) - The search query to execute with Tavily.
  • search_depth (enum<string>) - Controls the latency vs. relevance tradeoff and how results[].content is generated: advanced: Highest relevance with increased latency. Best for detailed, high-precision queries. Returns multiple semantically relevant snippets per URL (configurable via chunks_per_source). basic: A balanced option for relevance and latency. Ideal for general-purpose searches. Returns one NLP summary per URL. fast: Prioritizes lower latency while maintaining good relevance. Returns multiple semantically relevant snippets per URL (configurable via chunks_per_source). ultra-fast: Minimizes latency above all else. Best for time-critical use cases. Returns one NLP summary per URL. Cost: basic, fast, ultra-fast: 1 API Credit advanced: 2 API Credits See Search Best Practices for guidance on choosing the right search depth.
  • chunks_per_source (integer) - Chunks are short content snippets (maximum 500 characters each) pulled directly from the source. Use chunks_per_source to define the maximum number of relevant chunks returned per source and to control the content length. Chunks will appear in the content field as: <chunk 1> [...] <chunk 2> [...] <chunk 3>. Available only when search_depth is advanced.
  • max_results (integer) - The maximum number of search results to return.
  • topic (enum<string>) - The category of the search.news is useful for retrieving real-time updates, particularly about politics, sports, and major current events covered by mainstream media sources. general is for broader, more general-purpose searches that may include a wide range of sources.
  • time_range (enum<string>) - The time range back from the current date to filter results based on publish date or last updated date. Useful when looking for sources that have published or updated data.
  • start_date (string) - Will return all results after the specified start date based on publish date or last updated date. Required to be written in the format YYYY-MM-DD
  • end_date (string) - Will return all results before the specified end date based on publish date or last updated date. Required to be written in the format YYYY-MM-DD
  • include_answer (boolean) - Include an LLM-generated answer to the provided query. basic or true returns a quick answer. advanced returns a more detailed answer.
  • include_raw_content (boolean) - Include the cleaned and parsed HTML content of each search result. markdown or true returns search result content in markdown format. text returns the plain text from the results and may increase latency.
  • include_images (boolean) - Also perform an image search and include the results in the response.
  • include_image_descriptions (boolean) - When include_images is true, also add a descriptive text for each image.
  • include_favicon (boolean) - Whether to include the favicon URL for each result.
  • include_domains (string[]) - A list of domains to specifically include in the search results. Maximum 300 domains.
  • exclude_domains (string[]) - A list of domains to specifically exclude from the search results. Maximum 150 domains.
  • country (enum<string>) - Boost search results from a specific country. This will prioritize content from the selected country in the search results. Available only if topic is general.
  • auto_parameters (boolean) - When auto_parameters is enabled, Tavily automatically configures search parameters based on your query's content and intent. You can still set other parameters manually, and your explicit values will override the automatic ones. The parameters include_answer, include_raw_content, and max_results must always be set manually, as they directly affect response size. Note: search_depth may be automatically set to advanced when it's likely to improve results. This uses 2 API credits per request. To avoid the extra cost, you can explicitly set search_depth to basic.
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/search"}'
  "query": "latest developments in AI agents",
  "search_depth": "advanced",
  "include_answer": true
}'

Get Research Task Status (free)

Retrieve the status and results of a research task using its request ID.

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/research/{request_id}"}'

Create Research Task

Tavily Research performs comprehensive research on a given topic by conducting multiple searches, analyzing sources, and generating a detailed research report.

Parameters:

  • input* (string) - The research task or question to investigate.
  • model (enum<string>) - The model used by the research agent. "mini" is optimized for targeted, efficient research and works best for narrow or well-scoped questions. "pro" provides comprehensive, multi-angle research and is suited for complex topics that span multiple subtopics or domains
  • stream (boolean) - Whether to stream the research results as they are generated. When 'true', returns a Server-Sent Events (SSE) stream. See Streaming documentation for details.
  • output_schema (object) - A JSON Schema object that defines the structure of the research output. When provided, the research response will be structured to match this schema, ensuring a predictable and validated output shape. Must include a 'properties' field, and may optionally include 'required' field.
  • citation_format (enum<string>) - The format for citations in the research report.
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/research","body":{"input":"Compare different AI agent frameworks for production use"}}'

Tavily Extract

Extract web page content from one or more specified URLs using Tavily Extract.

Parameters:

  • urls* (string[]) - The URL to extract content from.
  • query (string) - User intent for reranking extracted content chunks. When provided, chunks are reranked based on relevance to this query.
  • chunks_per_source (integer) - Chunks are short content snippets (maximum 500 characters each) pulled directly from the source. Use chunks_per_source to define the maximum number of relevant chunks returned per source and to control the raw_content length. Chunks will appear in the raw_content field as: <chunk 1> [...] <chunk 2> [...] <chunk 3>. Available only when query is provided. Must be between 1 and 5.
  • extract_depth (enum<string>) - The depth of the extraction process. advanced extraction retrieves more data, including tables and embedded content, with higher success but may increase latency.basic extraction costs 1 credit per 5 successful URL extractions, while advanced extraction costs 2 credits per 5 successful URL extractions.
  • include_images (boolean) - Include a list of images extracted from the URLs in the response. Default is false.
  • include_favicon (boolean) - Whether to include the favicon URL for each result.
  • format (enum<string>) - The format of the extracted web page content. markdown returns content in markdown format. text returns plain text and may increase latency.
  • timeout (number) - Maximum time in seconds to wait for the URL extraction before timing out. Must be between 1.0 and 60.0 seconds. If not specified, default timeouts are applied based on extract_depth: 10 seconds for basic extraction and 30 seconds for advanced extraction.
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/extract","body":{"urls":["https://example.com/article1","https://example.com/article2"]}}'

Tavily Map

Tavily Map traverses websites like a graph and can explore hundreds of paths in parallel with intelligent discovery to generate comprehensive site maps.

Parameters:

  • url* (string) - The root URL to begin the mapping.
  • instructions (string) - Natural language instructions for the crawler. When specified, the cost increases to 2 API credits per 10 successful pages instead of 1 API credit per 10 pages.
  • max_depth (integer) - Max depth of the mapping. Defines how far from the base URL the crawler can explore.
  • max_breadth (integer) - Max number of links to follow per level of the tree (i.e., per page).
  • limit (integer) - Total number of links the crawler will process before stopping.
  • select_paths (string[]) - Regex patterns to select only URLs with specific path patterns (e.g., /docs/., /api/v1.).
  • select_domains (string[]) - Regex patterns to select crawling to specific domains or subdomains (e.g., ^docs.example.com$).
  • exclude_paths (string[]) - Regex patterns to exclude URLs with specific path patterns (e.g., /private/., /admin/.).
  • exclude_domains (string[]) - Regex patterns to exclude specific domains or subdomains from crawling (e.g., ^private.example.com$).
  • allow_external (boolean) - Whether to include external domain links in the final results list.
  • timeout (number<float>) - Maximum time in seconds to wait for the map operation before timing out. Must be between 10 and 150 seconds.
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/map","body":{"url":"https://example.com"}}'

Tavily Crawl

Tavily Crawl is a graph-based website traversal tool that can explore hundreds of paths in parallel with built-in extraction and intelligent discovery.

Parameters:

  • url* (string) - The root URL to begin the crawl.
  • instructions (string) - Natural language instructions for the crawler. When specified, the mapping cost increases to 2 API credits per 10 successful pages instead of 1 API credit per 10 pages.
  • chunks_per_source (integer) - Chunks are short content snippets (maximum 500 characters each) pulled directly from the source. Use chunks_per_source to define the maximum number of relevant chunks returned per source and to control the raw_content length. Chunks will appear in the raw_content field as: <chunk 1> [...] <chunk 2> [...] <chunk 3>. Available only when instructions are provided. Must be between 1 and 5.
  • max_depth (integer) - Max depth of the crawl. Defines how far from the base URL the crawler can explore.
  • max_breadth (integer) - Max number of links to follow per level of the tree (i.e., per page).
  • limit (integer) - Total number of links the crawler will process before stopping.
  • select_paths (string[]) - Regex patterns to select only URLs with specific path patterns (e.g., /docs/., /api/v1.).
  • select_domains (string[]) - Regex patterns to select crawling to specific domains or subdomains (e.g., ^docs.example.com$).
  • exclude_paths (string[]) - Regex patterns to exclude URLs with specific path patterns (e.g., /private/., /admin/.).
  • exclude_domains (string[]) - Regex patterns to exclude specific domains or subdomains from crawling (e.g., ^private.example.com$).
  • allow_external (boolean) - Whether to include external domain links in the final results list.
  • include_images (boolean) - Whether to include images in the crawl results.
  • extract_depth (enum<string>) - Advanced extraction retrieves more data, including tables and embedded content, with higher success but may increase latency. basic extraction costs 1 credit per 5 successful extractions, while advanced extraction costs 2 credits per 5 successful extractions.
  • format (enum<string>) - The format of the extracted web page content. markdown returns content in markdown format. text returns plain text and may increase latency.
  • include_favicon (boolean) - Whether to include the favicon URL for each result.
  • timeout (number<float>) - Maximum time in seconds to wait for the crawl operation before timing out. Must be between 10 and 150 seconds.
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/crawl"}'
  "url": "https://docs.example.com",
  "max_depth": 3
}'

Use Cases

  1. Research: Comprehensive research on any topic
  2. Content Aggregation: Extract and process web content
  3. Market Intelligence: Track industry trends
  4. Documentation: Crawl and index documentation sites
  5. Fact-Finding: Get accurate, sourced answers

Discover More

For full endpoint details and parameters:

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt":"tavily API endpoints"}' List all endpoints
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/details \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"tavily","path":"/search"}'   # Get endpoint details
1---
2name: web-search-tavily
3description: AI-powered web search, crawling, extraction, and deep research
4source: orthogonal
5---
6 
7 
8# Tavily - AI Search & Research API
9 
10## Setup
11 
12Read your credentials from ~/.gooseworks/credentials.json:
13```bash
14export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
15export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
16```
17 
18If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login`
19 
20All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"`
21 
22 
23Comprehensive web search, crawling, content extraction, and deep research.
24 
25## Capabilities
26 
27- **Tavily Search**: Execute a search query using Tavily Search
28- **Get Research Task Status**: Retrieve the status and results of a research task using its request ID (free)
29- **Create Research Task**: Tavily Research performs comprehensive research on a given topic by conducting multiple searches, analyzing sources, and generating a detailed research report
30- **Tavily Extract**: Extract web page content from one or more specified URLs using Tavily Extract
31- **Tavily Map**: Tavily Map traverses websites like a graph and can explore hundreds of paths in parallel with intelligent discovery to generate comprehensive site maps
32- **Tavily Crawl**: Tavily Crawl is a graph-based website traversal tool that can explore hundreds of paths in parallel with built-in extraction and intelligent discovery
33 
34## Usage
35 
36### Tavily Search
37Execute a search query using Tavily Search.
38 
39Parameters:
40- query* (string) - The search query to execute with Tavily.
41- search_depth (enum<string>) - Controls the latency vs. relevance tradeoff and how results[].content is generated: advanced: Highest relevance with increased latency. Best for detailed, high-precision queries. Returns multiple semantically relevant snippets per URL (configurable via chunks_per_source). basic: A balanced option for relevance and latency. Ideal for general-purpose searches. Returns one NLP summary per URL. fast: Prioritizes lower latency while maintaining good relevance. Returns multiple semantically relevant snippets per URL (configurable via chunks_per_source). ultra-fast: Minimizes latency above all else. Best for time-critical use cases. Returns one NLP summary per URL. Cost: basic, fast, ultra-fast: 1 API Credit advanced: 2 API Credits See Search Best Practices for guidance on choosing the right search depth.
42- chunks_per_source (integer) - Chunks are short content snippets (maximum 500 characters each) pulled directly from the source. Use chunks_per_source to define the maximum number of relevant chunks returned per source and to control the content length. Chunks will appear in the content field as: <chunk 1> [...] <chunk 2> [...] <chunk 3>. Available only when search_depth is advanced.
43- max_results (integer) - The maximum number of search results to return.
44- topic (enum<string>) - The category of the search.news is useful for retrieving real-time updates, particularly about politics, sports, and major current events covered by mainstream media sources. general is for broader, more general-purpose searches that may include a wide range of sources.
45- time_range (enum<string>) - The time range back from the current date to filter results based on publish date or last updated date. Useful when looking for sources that have published or updated data.
46- start_date (string) - Will return all results after the specified start date based on publish date or last updated date. Required to be written in the format YYYY-MM-DD
47- end_date (string) - Will return all results before the specified end date based on publish date or last updated date. Required to be written in the format YYYY-MM-DD
48- include_answer (boolean) - Include an LLM-generated answer to the provided query. basic or true returns a quick answer. advanced returns a more detailed answer.
49- include_raw_content (boolean) - Include the cleaned and parsed HTML content of each search result. markdown or true returns search result content in markdown format. text returns the plain text from the results and may increase latency.
50- include_images (boolean) - Also perform an image search and include the results in the response.
51- include_image_descriptions (boolean) - When include_images is true, also add a descriptive text for each image.
52- include_favicon (boolean) - Whether to include the favicon URL for each result.
53- include_domains (string[]) - A list of domains to specifically include in the search results. Maximum 300 domains.
54- exclude_domains (string[]) - A list of domains to specifically exclude from the search results. Maximum 150 domains.
55- country (enum<string>) - Boost search results from a specific country. This will prioritize content from the selected country in the search results. Available only if topic is general.
56- auto_parameters (boolean) - When auto_parameters is enabled, Tavily automatically configures search parameters based on your query's content and intent. You can still set other parameters manually, and your explicit values will override the automatic ones. The parameters include_answer, include_raw_content, and max_results must always be set manually, as they directly affect response size. Note: search_depth may be automatically set to advanced when it's likely to improve results. This uses 2 API credits per request. To avoid the extra cost, you can explicitly set search_depth to basic.
57 
58```bash
59curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
60 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
61 -H "Content-Type: application/json" \
62 -d '{"api":"tavily","path":"/search"}'
63 "query": "latest developments in AI agents",
64 "search_depth": "advanced",
65 "include_answer": true
66}'
67```
68 
69### Get Research Task Status (free)
70Retrieve the status and results of a research task using its request ID.
71 
72```bash
73curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
74 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
75 -H "Content-Type: application/json" \
76 -d '{"api":"tavily","path":"/research/{request_id}"}'
77```
78 
79### Create Research Task
80Tavily Research performs comprehensive research on a given topic by conducting multiple searches, analyzing sources, and generating a detailed research report.
81 
82Parameters:
83- input* (string) - The research task or question to investigate.
84- model (enum<string>) - The model used by the research agent. "mini" is optimized for targeted, efficient research and works best for narrow or well-scoped questions. "pro" provides comprehensive, multi-angle research and is suited for complex topics that span multiple subtopics or domains
85- stream (boolean) - Whether to stream the research results as they are generated. When 'true', returns a Server-Sent Events (SSE) stream. See Streaming documentation for details.
86- output_schema (object) - A JSON Schema object that defines the structure of the research output. When provided, the research response will be structured to match this schema, ensuring a predictable and validated output shape. Must include a 'properties' field, and may optionally include 'required' field.
87- citation_format (enum<string>) - The format for citations in the research report.
88 
89```bash
90curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
91 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
92 -H "Content-Type: application/json" \
93 -d '{"api":"tavily","path":"/research","body":{"input":"Compare different AI agent frameworks for production use"}}'
94```
95 
96### Tavily Extract
97Extract web page content from one or more specified URLs using Tavily Extract.
98 
99Parameters:
100- urls* (string[]) - The URL to extract content from.
101- query (string) - User intent for reranking extracted content chunks. When provided, chunks are reranked based on relevance to this query.
102- chunks_per_source (integer) - Chunks are short content snippets (maximum 500 characters each) pulled directly from the source. Use chunks_per_source to define the maximum number of relevant chunks returned per source and to control the raw_content length. Chunks will appear in the raw_content field as: <chunk 1> [...] <chunk 2> [...] <chunk 3>. Available only when query is provided. Must be between 1 and 5.
103- extract_depth (enum<string>) - The depth of the extraction process. advanced extraction retrieves more data, including tables and embedded content, with higher success but may increase latency.basic extraction costs 1 credit per 5 successful URL extractions, while advanced extraction costs 2 credits per 5 successful URL extractions.
104- include_images (boolean) - Include a list of images extracted from the URLs in the response. Default is false.
105- include_favicon (boolean) - Whether to include the favicon URL for each result.
106- format (enum<string>) - The format of the extracted web page content. markdown returns content in markdown format. text returns plain text and may increase latency.
107- timeout (number) - Maximum time in seconds to wait for the URL extraction before timing out. Must be between 1.0 and 60.0 seconds. If not specified, default timeouts are applied based on extract_depth: 10 seconds for basic extraction and 30 seconds for advanced extraction.
108 
109```bash
110curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
111 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
112 -H "Content-Type: application/json" \
113 -d '{"api":"tavily","path":"/extract","body":{"urls":["https://example.com/article1","https://example.com/article2"]}}'
114```
115 
116### Tavily Map
117Tavily Map traverses websites like a graph and can explore hundreds of paths in parallel with intelligent discovery to generate comprehensive site maps.
118 
119Parameters:
120- url* (string) - The root URL to begin the mapping.
121- instructions (string) - Natural language instructions for the crawler. When specified, the cost increases to 2 API credits per 10 successful pages instead of 1 API credit per 10 pages.
122- max_depth (integer) - Max depth of the mapping. Defines how far from the base URL the crawler can explore.
123- max_breadth (integer) - Max number of links to follow per level of the tree (i.e., per page).
124- limit (integer) - Total number of links the crawler will process before stopping.
125- select_paths (string[]) - Regex patterns to select only URLs with specific path patterns (e.g., /docs/.*, /api/v1.*).
126- select_domains (string[]) - Regex patterns to select crawling to specific domains or subdomains (e.g., ^docs\.example\.com$).
127- exclude_paths (string[]) - Regex patterns to exclude URLs with specific path patterns (e.g., /private/.*, /admin/.*).
128- exclude_domains (string[]) - Regex patterns to exclude specific domains or subdomains from crawling (e.g., ^private\.example\.com$).
129- allow_external (boolean) - Whether to include external domain links in the final results list.
130- timeout (number<float>) - Maximum time in seconds to wait for the map operation before timing out. Must be between 10 and 150 seconds.
131 
132```bash
133curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
134 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
135 -H "Content-Type: application/json" \
136 -d '{"api":"tavily","path":"/map","body":{"url":"https://example.com"}}'
137```
138 
139### Tavily Crawl
140Tavily Crawl is a graph-based website traversal tool that can explore hundreds of paths in parallel with built-in extraction and intelligent discovery.
141 
142Parameters:
143- url* (string) - The root URL to begin the crawl.
144- instructions (string) - Natural language instructions for the crawler. When specified, the mapping cost increases to 2 API credits per 10 successful pages instead of 1 API credit per 10 pages.
145- chunks_per_source (integer) - Chunks are short content snippets (maximum 500 characters each) pulled directly from the source. Use chunks_per_source to define the maximum number of relevant chunks returned per source and to control the raw_content length. Chunks will appear in the raw_content field as: <chunk 1> [...] <chunk 2> [...] <chunk 3>. Available only when instructions are provided. Must be between 1 and 5.
146- max_depth (integer) - Max depth of the crawl. Defines how far from the base URL the crawler can explore.
147- max_breadth (integer) - Max number of links to follow per level of the tree (i.e., per page).
148- limit (integer) - Total number of links the crawler will process before stopping.
149- select_paths (string[]) - Regex patterns to select only URLs with specific path patterns (e.g., /docs/.*, /api/v1.*).
150- select_domains (string[]) - Regex patterns to select crawling to specific domains or subdomains (e.g., ^docs\.example\.com$).
151- exclude_paths (string[]) - Regex patterns to exclude URLs with specific path patterns (e.g., /private/.*, /admin/.*).
152- exclude_domains (string[]) - Regex patterns to exclude specific domains or subdomains from crawling (e.g., ^private\.example\.com$).
153- allow_external (boolean) - Whether to include external domain links in the final results list.
154- include_images (boolean) - Whether to include images in the crawl results.
155- extract_depth (enum<string>) - Advanced extraction retrieves more data, including tables and embedded content, with higher success but may increase latency. basic extraction costs 1 credit per 5 successful extractions, while advanced extraction costs 2 credits per 5 successful extractions.
156- format (enum<string>) - The format of the extracted web page content. markdown returns content in markdown format. text returns plain text and may increase latency.
157- include_favicon (boolean) - Whether to include the favicon URL for each result.
158- timeout (number<float>) - Maximum time in seconds to wait for the crawl operation before timing out. Must be between 10 and 150 seconds.
159 
160```bash
161curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
162 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
163 -H "Content-Type: application/json" \
164 -d '{"api":"tavily","path":"/crawl"}'
165 "url": "https://docs.example.com",
166 "max_depth": 3
167}'
168```
169 
170## Use Cases
171 
1721. **Research**: Comprehensive research on any topic
1732. **Content Aggregation**: Extract and process web content
1743. **Market Intelligence**: Track industry trends
1754. **Documentation**: Crawl and index documentation sites
1765. **Fact-Finding**: Get accurate, sourced answers
177 
178## Discover More
179 
180For full endpoint details and parameters:
181 
182```bash
183curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \
184 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
185 -H "Content-Type: application/json" \
186 -d '{"prompt":"tavily API endpoints"}' List all endpoints
187curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/details \
188 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
189 -H "Content-Type: application/json" \
190 -d '{"api":"tavily","path":"/search"}' # Get endpoint details
191```
192 

Discussion

Alternatives

Also in Services & APIs
Context7Pulls up-to-date, version-specific library docs and code examples into the prompt so the AI stops inventing old APIs.Coding · MITAdaptyv Bio Foundry APIHow to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for experimental characterization. Also trigger when code imports `adaptyv`, `adaptyv_sdk`, or `FoundryClient`, or references `foundry-api-public.adaptyvbio.com`.Science · MIT.NET Backend Development PatternsMaster C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuration, caching, and testing with xUnit. Use when developing .NET backends, reviewing C# code, or designing API architectures.Coding · MITAdd AI protectionProtect AI chat and completion endpoints from abuse — detect prompt injection and jailbreak attempts, block PII and sensitive info from leaking in responses, and enforce token budget rate limits to control costs. Use this skill when the user is building or securing any endpoint that processes user prompts with an LLM, even if they describe it as "preventing jailbreaks," "stopping prompt attacks," "blocking sensitive data," or "controlling AI API costs" rather than naming specific protections.Coding · CC0-1.0