Skip to main content
GET
/
agents
/
tokens
List all tokens for the current owner (across all agents)
curl --request GET \
  --url https://api.getovra.com/agents/tokens \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "agentId": "<string>",
    "agentName": "<string>",
    "label": "<string>",
    "scopes": [
      "<string>"
    ],
    "expiresAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

API key (sk_...) or Agent token (at_...)

Response

Array of token summaries with agent names

id
string
agentId
string
agentName
string
label
string | null
scopes
string[]
expiresAt
string<date-time> | null
createdAt
string<date-time>