← APIs / Tavily
Verified

Tavily

Apiosk Basicsby Apiosk Basics · General

Agent-native web search and webpage extraction.

searchapi
Price per request
$0.05
About

Tavily provides search and extraction APIs tuned for AI agents, RAG workflows and research tasks. This listing exposes the core /search and /extract endpoints with upstream Bearer authentication held by Apiosk.

Base URL
https://gateway.apiosk.com/tavily
Technical Specs
Auth MethodapiKey
Response FormatJSON
Endpoints2
Endpoints
MethodPathDescriptionCost
POST /extract Extract web page content from one or more URLs.
$0.05 default
View details
POST /search Run a Tavily web search with optional answer, images and result-depth controls.
$0.07 default
View details
Endpoint documentation
POST/extract
$0.05 default
Description

Extract web page content from one or more URLs.

Pricing
$0.05 default
Request schema
{
  "properties": {
    "extract_depth": {
      "type": "string"
    },
    "format": {
      "type": "string"
    },
    "urls": {
      "items": {
        "format": "uri",
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "urls"
  ],
  "type": "object"
}
Response schema
{
  "properties": {
    "failed_results": {
      "type": "array"
    },
    "response_time": {
      "type": "number"
    },
    "results": {
      "type": "array"
    }
  },
  "type": "object"
}
Example request
{
  "urls": [
    "https://example.com"
  ]
}
Example response
{
  "failed_results": [],
  "response_time": 0.8,
  "results": [
    {
      "raw_content": "Example Domain",
      "url": "https://example.com"
    }
  ]
}
POST/search
$0.07 default
Description

Run a Tavily web search with optional answer, images and result-depth controls.

Pricing
$0.07 default
Request schema
{
  "properties": {
    "include_answer": {
      "type": "boolean"
    },
    "max_results": {
      "type": "integer"
    },
    "query": {
      "type": "string"
    },
    "search_depth": {
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}
Response schema
{
  "properties": {
    "answer": {
      "type": [
        "string",
        "null"
      ]
    },
    "query": {
      "type": "string"
    },
    "response_time": {
      "type": "number"
    },
    "results": {
      "type": "array"
    }
  },
  "type": "object"
}
Example request
{
  "max_results": 1,
  "query": "agent-native search APIs"
}
Example response
{
  "answer": null,
  "query": "agent-native search APIs",
  "response_time": 1.2,
  "results": [
    {
      "content": "Result snippet",
      "title": "Example",
      "url": "https://example.com"
    }
  ]
}