Skip to content
unlob
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

GET /browsebash
curl -H "x-api-key: $UNLOB_API_KEY" \
  "https://api.unlob.com/browse?vertical=code&sort=recency&limit=20"
ParameterTypeDescription
verticalstringRestrict to one vertical.
sortrecency | host_rank

default: recency

Ordering.
limitinteger

default: 10

Number of passages.
langstringLanguage 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.

mcp: browsejson
// 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.