Search
POST https://api.synthetic.new/v2/search { query: "some search query" }
Synthetic provides a zero-data-retention web search API, meant for use in coding agents!
The Synthetic API is still under development.
If there is more data you would like to see and access, please let us know!
Example Request
- Python
- TypeScript
- curl
import requests
headers = {
"Authorization": "Bearer SYNTHETIC_API_KEY"
}
response = requests.post(
"https://api.synthetic.new/v2/search",
headers=headers,
data={ "query": "docs for the python requests library" }
)
print(response.json())Example Response
- json
{
"results": [{
"url": "https://curl.se/docs/projdocs.html",
"title": "curl — Project Documentation",
"text": "...",
"published": "2025-11-05T00:00:00.000Z"
}]
}