API ReferencePublisher Agents

List your agents

GET
/v1/publisher/agents

Returns agents owned by the current Workspace, newest first.

Authorization

bearerAuth
AuthorizationBearer <token>

Send a SimpleServe API key as Authorization: Bearer <key>.

In: header

Query Parameters

limit?integer

Maximum records to return.

Range1 <= value <= 100
Default20
cursor?string

Opaque cursor from next_cursor.

Length1 <= length <= 500

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/publisher/agents"
{  "object": "list",  "data": [    {      "id": "agent_01JXYZ1234567890",      "object": "publisher.agent",      "namespace": "northstar",      "slug": "weather-market-forecaster",      "name": "Weather Market Forecaster",      "description": "Compares weather forecasts and prediction-market prices.",      "draft_revision": 12,      "private_deployment": null,      "public_deployment": null,      "public_submission": null,      "created_at": "2026-08-30T13:00:00Z",      "updated_at": "2026-08-30T15:00:00Z"    }  ],  "has_more": false,  "next_cursor": null}