v3
latestOpenAPI 3.1.02026-08-0422020.5 KBReturns a list of unified search results from web and news sources
This endpoint is designed to return LLM-ready web results based on a user's query. Based on a classification mechanism, it can return web results and news associated with your query. If you need to feed an LLM with the results of a query that sounds like What are the latest geopolitical updates from India, then this endpoint is the right one for you.
POST is the recommended method when using complex parameters such as include_domains, exclude_domains, or boost_domains. These fields accept JSON arrays in the request body, which is unambiguous and avoids URL length limits. Use GET for simple queries where HTTP cacheability matters.
post/v1/search
Request body
Example request
{
"query": "What are the latest geopolitical updates from India",
"include_domains": [
"nytimes.com",
"bbc.com"
],
"exclude_domains": [
"spam-site.com",
"other-site.com"
],
"boost_domains": [
"nytimes.com",
"wired.com"
],
"crawl_timeout": 10
}Response
A JSON object containing unified search results from web and news sources
Example response
{
"results": {
"web": [
{
"url": "https://you.com",
"title": "The World's Greatest Search Engine!",
"description": "Search on YDC",
"snippets": [
"I'm an AI assistant that helps you get more done. What can I help you with?"
],
"thumbnail_url": "https://www.somethumbnailsite.com/thumbnail.jpg",
"page_age": "2025-06-25T11:41:00",
"favicon_url": "https://someurl.com/favicon"
}
],
"news": [
{
"title": "Exclusive | You.com becomes the backbone of the EU's AI strategy",
"description": "As the EU's AI strategy is being debated, You.com becomes the backbone of the EU's AI strategy.",
"page_age": "2025-06-25T11:41:00",
"thumbnail_url": "https://www.somethumbnailsite.com/thumbnail.jpg",
"url": "https://www.you.com/news/eu-ai-strategy-youcom"
}
]
},
"metadata": {
"search_uuid": "942ccbdd-7705-4d9c-9d37-4ef386658e90",
"query": "What are the latest geopolitical updates from India",
"latency": 0.123
}
}