Skip to main content
GET
/
cards
List all cards across all agents
curl --request GET \
  --url https://api.getovra.com/cards \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "<unknown>"
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

Pagination cursor returned by a previous request

limit
integer
default:50

Maximum number of items to return

Required range: 1 <= x <= 100

Response

Paginated list of cards

data
any[]
hasMore
boolean
nextCursor
string | null