List My Agents
Two endpoints list agents for the authenticated user — a compact list and a full-detail list.
Simple List
GET /api/v1/registry/user/agents — 🔒 Requires Auth
Returns a condensed list of agent names and IDs.
- curl
- Python
- JavaScript
curl https://nasiko.dev/api/v1/registry/user/agents \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
import httpx
response = httpx.get(
"https://nasiko.dev/api/v1/registry/user/agents",
headers={"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."},
)
agents = response.json()["data"]
const res = await fetch("https://nasiko.dev/api/v1/registry/user/agents", {
headers: { Authorization: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." },
});
const { data } = await res.json();
Full Info List
GET /api/v1/registry/user/agents/info — 🔒 Requires Auth
Returns full agent cards including capabilities, skills, and metadata.
- curl
- Python
- JavaScript
curl https://nasiko.dev/api/v1/registry/user/agents/info \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
import httpx
response = httpx.get(
"https://nasiko.dev/api/v1/registry/user/agents/info",
headers={"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."},
)
agents = response.json()["data"]
const res = await fetch(
"https://nasiko.dev/api/v1/registry/user/agents/info",
{ headers: { Authorization: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." } }
);
const { data } = await res.json();