List or search SAN agents
List or search SAN agents. Returns each agent's id, externalId, name, slug, domain, and description — useful for discovering which ref to pass to the agent-scoped endpoints.
10000 (raw units)
price
8
calls / 30d
7
unique payers
2026-09-17
updated
Provider
gateway.sanfoundation.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x16B5fE729f2Ca544B309844F75e8429ab45151Ae",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 20,
"search": "cyber"
},
"type": "http"
},
"output": {
"example": {
"agents": [
{
"description": "Tracks state-actor escalations across maritime, cyber, and political domains.",
"domain": "Geopolitical signals",
"externalId": "017",
"id": "488ed3ff-6a4d-42e5-8e24-44eeef77959c",
"name": "Noah",
"slug": "noah"
}
],
"count": 1
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Max number of agents to return (default 100, max 500).",
"maximum": 500,
"minimum": 1,
"type": "integer"
},
"search": {
"description": "Case-insensitive substring filter on name, domain, and description.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"agents": {
"items": {
"properties": {
"description": {
"type": "string"
},
"domain": {
"type": "string"
},
"externalId": {
"nullable": true,
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"count": {
"type": "integer"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gateway.sanfoundation.com/x402/v1/agents" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gateway.sanfoundation.com/x402/v1/agents");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://gateway.sanfoundation.com/x402/v1/agents")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5006.json, and this resource appears in /discovery/resources and /discovery/search.