GET
/browse
Query-free browsing: the most recent or highest-ranked passages, optionally within a single vertical.
Not every retrieval starts with a question. Browse returns a window over the index sorted by recency or host rank, which is what you want for a monitoring loop, a digest, or any agent whose job is "tell me what changed".
Request
curl -H "x-api-key: $UNLOB_API_KEY" \
"https://api.unlob.com/browse?vertical=code&sort=recency&limit=20"| Parameter | Type | Description |
|---|---|---|
vertical | string | Restrict to one vertical. |
sort | recency | host_rank default: recency | Ordering. |
limit | integer default: 10 | Number of passages. |
lang | string | Language filter. |
Response
The same WebHit[] shape as /search.
From an agent
This endpoint is also exposed as the MCP tool browse, so an agent can call it without any HTTP code.
// What has been published in the code vertical recently?
{ "vertical": "code", "sort": "recency", "limit": 20 }Try this endpoint
Every endpoint is available on the free tier. Get a key and run the example above unchanged.