Search · Overview
Search
Real-time web and news results, ranked for LLM consumption and returned in a structured format you can pipe directly into a prompt or pipeline.
Live demo
See the Search API in action with WebFinds — natural-language criteria, verified results, and structured enrichment columns, all on top of this endpoint.
When to use Search
- Grounding LLM answers with current information.
- Powering AI assistants that need fresh facts.
- Building agents that need to look things up before acting.
Endpoint
GET
https://chat-api.you.com/searchExample
Python
from youdotcom import You
with You("<API_KEY>") as you:
res = you.search.unified(query="apache iceberg vs delta lake")
for r in res.results.web or []:
print(r.title)