Skip to main content
GET
/
api
/
v1
/
search
Search the bibliotheca catalog for matching volumes
curl --request GET \
  --url https://api.example.com/api/v1/search
{
  "items": [
    {
      "name": "<string>",
      "latestVersion": "<string>",
      "description": "<string>",
      "providers": [
        "<string>"
      ],
      "components": [
        {
          "name": "<string>"
        }
      ]
    }
  ],
  "total": 1,
  "limit": 2,
  "offset": 1
}

Documentation Index

Fetch the complete documentation index at: https://agentvolumes.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

q
string
type
enum<string>
Available options:
agent,
skill,
command,
tool,
hook,
mcp-server,
lsp-server
runtime
string
provider
string
keyword
string
publisher
string
limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

Search results

items
object[]
required
total
integer
required

Total matching results for the bibliotheca-local query snapshot.

Required range: x >= 0
limit
integer
required

Page size used for this catalog search response; not a resolver ordering signal.

Required range: x >= 1
offset
integer
required

Zero-based offset used for this catalog search response; search ordering remains bibliotheca-local.

Required range: x >= 0