> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usecroma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Web Search

> AI-powered web search with structured, scored results.

Runs an AI-powered web search and returns structured results: URLs, titles,
authors, dates, highlights, and relevance scores.

`POST /global/web-search/v1`

| Field   | Type    | Notes                       |
| ------- | ------- | --------------------------- |
| `query` | string  | **Required.** 3-300 chars.  |
| `limit` | integer | 1-25 results. Default `10`. |

```bash theme={"dark"}
curl https://api.croma.run/global/web-search/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "query": "croma api colombia", "limit": 10 }'
```

<Warning>
  Web Search has a tighter quota than other endpoints: **10 requests per hour**
  per organization. See [Rate limits](/rate-limits).
</Warning>

<Card title="Full reference" icon="code" href="/api-reference/overview">
  Schemas, response fields, and an interactive playground.
</Card>
