OpenAdapterOpenAdapter
Tools

Web Search

Search the web with multiple engines. Get titles, URLs, snippets, and suggestions.

Base URL & authentication

Base URL: https://api.openadapter.in

All requests need an Authorization: Bearer sk-cv-... header. Generate or copy your API key from the Dashboard → API Keys page.

Endpoint: POST /v1/tools/search Cost per call: 0.15 credits Minimum plan: free

Search the web with multiple engines. Get titles, URLs, snippets, and suggestions.

Request

curl https://api.openadapter.in/v1/tools/search \
  -H "Authorization: Bearer $OPENADAPTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"latest AI news","num_results":10,"language":"en"}'
import requests

resp = requests.post(
    "https://api.openadapter.in/v1/tools/search",
    headers={"Authorization": f"Bearer {API_KEY}"},
    json={
    "query": "latest AI news",
    "num_results": 10,
    "language": "en",
},
)
print(resp.json())
const res = await fetch('https://api.openadapter.in/v1/tools/search', {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.OPENADAPTER_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "query": "latest AI news",
  "num_results": 10,
  "language": "en"
}),
});
console.log(await res.json());

Pricing

Each call costs 0.15 credits. Available on the free plan and above.

On this page