Quickstart
You.com gives you real-time web intelligence through five APIs: Web Search, Answer, Contents, Research, and Finance Research. Two ways to get started — write code, or connect your agent.
Get an API key and run your first request in minutes. Try each API in the flow below.
Connect your IDE or agent to You.com with no code — Docs MCP server, You.com MCP server, or Agent Skills.
The five APIs:
- Web Search API — real-time web and news results as LLM-ready JSON
- Answer API — a cited, synthesized answer from a single query
- Contents API — clean Markdown or HTML from URLs you specify
- Research API — multi-step, cited answers to complex questions
- Finance Research API — cited answers from a finance-optimized index
Get Your API Key
Sign in or create an account, then get an API key here: https://you.com/platform. You’ll start with $100 in complimentary credits — no credit card required.
The code samples below read your key from an environment variable named YDC_API_KEY — the canonical variable name across our docs, SDKs, and integrations. Set it once (export YDC_API_KEY="your-key") and the examples will pick it up. See API key management for best practices.
Try the Web Search API
The Web Search API returns real-time web and news results as structured, LLM-ready JSON. Feed the results directly into your prompt to ground your AI in fresh information.
You’ll get back structured JSON like this:
The Python SDK covers the Web Search, Answer, Contents, Research, and Finance Research APIs. The TypeScript SDK covers the Web Search, Contents, and Research APIs — call the Answer and Finance Research APIs directly over HTTP with the same X-API-Key header.
Improve Accuracy with Full Page Extraction
Search results already include snippets — short, query-relevant text extracts from target pages. Use the extraction parameter with extraction_mode: "full_page" to fetch full page content for each result as clean Markdown or HTML.
This will naturally increase latency, but massively improves knowledge accuracy.
Full page extraction is billed at $1.00 per 1,000 pages on top of the base Web Search API rate — the same price as the Contents API. With the default count=10, a call using extraction_mode: "full_page" crawls up to 20 pages and adds $0.02 to the $0.005 base cost.
Results that support extraction will include a contents.markdown field with the full page. For RAG pipelines that need deep context rather than surface-level snippets, this is the parameter to reach for.
Try the Answer API
The Web Search API gives you the raw results. The Answer API does the next step — it retrieves web results, verifies every citation against the source text, and returns a Markdown answer with inline citations in one call. The fastest path from a question to a grounded answer, with no orchestration on your end.
The response includes a Markdown answer with numbered inline citations, the sources cited, and the web results considered during synthesis:
Every citation is verified against the source text before the answer is returned — the excerpts are the verbatim passages the model used, so you can confirm accuracy without trusting the model alone. Use freshness, country, language, include_domains, exclude_domains, and boost_domains to steer results, same as the Web Search API.
Try the Contents API
The Contents API fetches content from URLs you specify as clean Markdown or HTML — no browser automation, no HTML parsing. One use: pass your competitors’ pricing page URLs to a daily job and feed the Markdown to an LLM to monitor what changed.
Each URL comes back as a structured object:
Try the Research API
The Research API goes beyond a single web search. Give it a complex question and it runs multiple searches, reads through the sources, and synthesizes a thorough, citation-backed answer — so you don’t have to. Control the depth with research_effort from lite to frontier.
The response includes a Markdown-formatted answer with inline citations and the list of sources used:
Use research_effort to control how deep the API digs — lite for quick answers, standard for a good balance, deep or exhaustive when thoroughness matters more than speed, or frontier for long-running deep research that requires background mode. The Research API also supports source_control and output_schema for domain filtering and structured JSON output.
Try the Finance Research API
The Finance Research API works just like the Research API — same request shape, same response shape — but it searches a finance-optimized index instead of the open web: SEC filings, equity prices, fundamentals, macro indicators, and financial news. Use it for earnings analysis, due diligence, and market research.
It accepts two parameters: input (your financial question) and research_effort (deep or exhaustive).
The response is the same shape as the Research API — a Markdown answer with inline citations and a list of sources, but every source comes from the financial index:
The Finance Research API does not support source_control or output_schema. If you need domain filtering or structured JSON output, use the Research API.
Give Your Agent Access
Four ways to give your agent access to You.com, from zero-setup to installable skills.
-
Read these docs in any agent. Append
.mdto any page URL to get that page’s full content as plain-text Markdown — for example,you.com/docs/quickstart.md. For a complete index of the documentation, useyou.com/docs/llms.txt. Each section also has its own index — append/llms.txtto any section URL (for example,you.com/docs/api-reference/llms.txt). -
Search these docs from an agent with the Docs MCP server. Point any MCP-enabled client at
https://you.com/docs/_mcp/server— no API key — and your agent gets asearchDocstool that returns relevant passages with source URLs. See the Docs MCP Server guide for setup.
- Call the You.com APIs from an agent with the You.com MCP server. The hosted server gives your agent
you-search,you-contents,you-answer,you-research, andyou-financeagainst the live web. Connect without credentials to the free tier foryou-searchonly (100 queries per day), or pass your API key for the full tool set. See the MCP Server guide for IDE-specific setup.
For keyless you-search, use https://api.you.com/mcp?profile=free.
- Install Agent Skills for task-specific routing. Skills are instruction packs that tell your agent which tool or API to reach for and how to use it — current web search, URL content extraction, cited research, finance research, and integration discovery. Install all of them with one command, or pick the ones you need.
See the Agent Skills page for the full list, platform plugins, and what each skill routes to.
More Ways to Explore
Explore the APIs Interactively
- Web Search API playground
- Answer API playground
- Contents API playground
- Research API playground
- Finance Research API playground
Use the SDKs
Ergonomic, typed access to our APIs. The Python SDK covers Web Search, Answer, Contents, Research, and Finance Research. The TypeScript SDK covers Web Search, Contents, and Research.
Try in Postman
Fork one of our pre-built collections, add your API key to the production environment, and send your first request without writing code.
Evaluate You.com
You.com provides an open-source evaluation framework and a reproducible methodology for benchmarking search APIs — so you can measure what actually matters: accuracy, latency, and information retrieval quality.
We’re the only search API provider with peer-reviewed evaluation research. Our methodology was presented at the Association for the Advancement of Artificial Intelligence (AAAI) 2026 conference and received the Best Paper Award. Read the research:
- Stochasticity in Agentic Evaluations: Quantifying Inconsistency with Intraclass Correlation
- Randomness in AI Benchmarks: What Makes an Eval Trustworthy?
When starting your own evaluation, keep it simple: run count=10 with no filters on a representative query set, then layer in full page extraction if snippets aren’t providing enough context.
- How to Evaluate the Web Search API — methodology, dataset recommendations (SimpleQA, FRAMES, FreshQA), latency benchmarking, and a production checklist
- Agentic Web Search Playoffs — open-source benchmark comparing web search providers in agentic workflows
Our team can also design and run custom benchmarks tailored to your domain and quality bar. Talk to us
Use Cases
Ready-to-run sample apps built on You.com APIs. Each comes with a live demo and a fully forkable open-source GitHub repo — clone it, extend it, or use it as a starting point for your own project.
Runs a web search and returns the top results.
Multi-pass query expansion that surfaces sources a single search would miss.
Pull clean Markdown or HTML from any URL — ideal for LLM ingestion.
A multi-step agent that plans, searches, reads, and writes a cited report.
Pricing
You.com uses pay-as-you-go pricing based on the API and usage. All new accounts include $100 in free credits.
Quick Pricing Overview
- Web Search API: $5.00 per 1,000 calls (up to 100 results per call)
- Web Search API full page extraction add-on: $1.00 per 1,000 pages
- Contents API: $1.00 per 1,000 pages
- Answer API: $5.00 per 1,000 calls
- Research API: Starts at $12 per 1,000 calls (varies per effort tier)
- Finance Research API: Starts at $110 per 1,000 calls (
deep) — $500 per 1,000 calls (exhaustive)
Track your usage and spending from the analytics dashboard. For volume discounts, annual pricing, and enterprise features, visit you.com/pricing or contact [email protected].