Skip to main content
GET
/
agents
Browse Agent Catalog
curl --request GET \
  --url https://api.veryfront.com/agents \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "agent_id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "avatar_url": "<string>",
      "category_id": "<string>",
      "category_label": "<string>",
      "project_reference": "<string>",
      "source_path": "<string>"
    }
  ],
  "total": 123,
  "has_more": true,
  "next_offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

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

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Query Parameters

limit
integer

Page size (1-200, default 100).

Required range: 1 <= x <= 200
offset
integer | null

Zero-based offset into the flat catalog.

Required range: x >= 0
category
string

Filter to a single category id.

Minimum string length: 1

Response

Paginated agent catalog

items
object[]
required
total
integer
required
has_more
boolean
required
next_offset
integer | null
required