← APIs / Brave Search API
Verified

Brave Search API

Apiosk Basicsby Apiosk Basics · General

Independent web and news search from Brave Search.

searchapi
Price per request
$0.05
About

Brave Search API provides web, news, images, videos and related search data from Brave's independent index. This listing exposes web and news search with the subscription token injected by Apiosk.

Base URL
https://gateway.apiosk.com/brave-search
Technical Specs
Auth MethodapiKey
Response FormatJSON
Endpoints2
Endpoints
MethodPathDescriptionCost
GET /news/search Search recent news results from Brave Search.
$0.05 default
View details
GET /web/search Search the web from Brave's independent index.
$0.05 default
View details
Endpoint documentation
GET/news/search
$0.05 default
Description

Search recent news results from Brave Search.

Pricing
$0.05 default
Parameters
{
  "count": {
    "required": false,
    "type": "integer"
  },
  "country": {
    "required": false,
    "type": "string"
  },
  "freshness": {
    "required": false,
    "type": "string"
  },
  "q": {
    "required": true,
    "type": "string"
  },
  "search_lang": {
    "required": false,
    "type": "string"
  }
}
Response schema
{
  "properties": {
    "query": {
      "type": "object"
    },
    "results": {
      "type": "array"
    },
    "type": {
      "type": "string"
    }
  },
  "type": "object"
}
Example response
{
  "query": {
    "original": "OpenAI"
  },
  "results": [
    {
      "title": "Example News",
      "url": "https://example.com/news"
    }
  ],
  "type": "news"
}
GET/web/search
$0.05 default
Description

Search the web from Brave's independent index.

Pricing
$0.05 default
Parameters
{
  "count": {
    "required": false,
    "type": "integer"
  },
  "country": {
    "required": false,
    "type": "string"
  },
  "q": {
    "required": true,
    "type": "string"
  },
  "result_filter": {
    "required": false,
    "type": "string"
  },
  "search_lang": {
    "required": false,
    "type": "string"
  }
}
Response schema
{
  "properties": {
    "news": {
      "type": "object"
    },
    "query": {
      "type": "object"
    },
    "type": {
      "type": "string"
    },
    "web": {
      "type": "object"
    }
  },
  "type": "object"
}
Example response
{
  "query": {
    "original": "OpenAI"
  },
  "type": "search",
  "web": {
    "results": [
      {
        "title": "Example",
        "url": "https://example.com"
      }
    ]
  }
}