> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.auxiliar.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.auxiliar.ai/_mcp/server.

# You.com

Proxies [You.com](https://you.com)'s Search API, with You.com's `/v1` base folded into the route:

```
GET /youcom/search   → https://ydc-index.io/v1/search
```

`GET` only. Every control (`query`, `count`, `livecrawl`, …) travels in the query string and is forwarded byte-for-byte.

You.com's Contents and Research APIs are **deliberately not exposed** — only the Search API is proxied.

## What the gateway injects and strips

* **The `X-API-Key` header is injected**, overwriting any client-supplied one.
* **The `Authorization` header is stripped** before forwarding — You.com has no use for your gateway token.

## Example

```bash
curl "$GATEWAY/youcom/search?query=cloudflare+workers" \
  -H "Authorization: Bearer $TOKEN"
```

The response is You.com's JSON, returned unchanged. For request and response fields, follow [You.com's documentation](https://you.com/docs) — the gateway does not alter them.