Developer surface
Approachable REST API
Predictable JSON, no ceremony. Use these endpoints from your vibe stack, CI bots, or internal tools.
GET
/api/v1/agentsReturns every public listing in the store catalog.
curl -s https://your-domain.com/api/v1/agents | jq
GET
/api/v1/agents/:slugFetch a single agent by slug — ideal for detail pages.
POST
/api/v1/installsReserved for authenticated installs. Returns a short-lived token your agent can exchange for webhooks.
{
"agentSlug": "vibe-linter",
"workspaceId": "ws_123"
}