Research · Overview

Research

A managed research loop. The API plans subqueries, searches the web, reads the most relevant pages, and returns a synthesized answer with citations.

Endpoint

POSThttps://chat-api.you.com/research

What you get back

  • A grounded answer in Markdown.
  • A list of citations (URL, title, supporting snippet) keyed to the answer.
  • The intermediate reasoning trace, if you opt in.

Example

Python
res = you.research.run(query="What changed in EU AI Act enforcement in 2025?")
print(res.answer)
for c in res.citations:
    print("-", c.title, c.url)