Skip to main content
GET
/
api
/
v1
/
agents
List agents
curl --request GET \
  --url https://gateway.sanfoundation.com/api/v1/agents \
  --header 'x-api-key: <api-key>'
{
  "count": 123,
  "agents": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "externalId": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "domain": "<string>",
      "description": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

SAN-issued API key (sk_…) issued from the SAN Agents Dashboard (Settings → API Keys). Used by every /api/v1/* endpoint; usage is billed in credits against the owning account's active Stripe subscription.

Query Parameters

Case-insensitive substring filter on name, domain, and description.

limit
integer
default:100

Max number of agents to return.

Required range: 1 <= x <= 500

Response

OK — agent catalog.

count
integer
required
agents
object[]
required