Skip to main content
GET
/
api
/
storefront
/
customer
/
me
/
agents
List My Agents
curl --request GET \
  --url https://api.example.com/api/storefront/customer/me/agents \
  --header 'X-Site-ID: <x-site-id>'
{
  "agents": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "agent_name": "<string>",
      "scopes": [
        "<string>"
      ],
      "budget_cents": 123,
      "budget_used_cents": 123,
      "budget_remaining_cents": 123,
      "allowed_categories": [
        "<string>"
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "last_used_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "revoked_at": "2023-11-07T05:31:56Z",
      "is_active": true,
      "summary_for_human": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.stella-commerce.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

authorization
string | null
X-Site-ID
string
required
X-Stella-Token
string | null

Query Parameters

include_revoked
boolean
default:true

Include revoked / expired tokens in the list. Default True so customers see their full history; storefronts that want an 'active only' filter pass False.

Response

Successful Response

Response shape for GET /api/storefront/customer/me/agents.

agents
CustomerAgentSummary · object[]
required