Skip to main content
GET
/
customers
Get current customer (auto-creates if needed)
curl --request GET \
  --url https://api.getovra.com/customers \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "ownerId": "<string>",
  "type": "<string>",
  "email": "<string>",
  "status": "<string>",
  "plan": "<string>",
  "walletBalanceEuros": 123,
  "planLimits": {},
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Response

Customer object with plan limits

id
string
ownerId
string
type
string
email
string | null
status
string
plan
string
walletBalanceEuros
number
planLimits
object
createdAt
string<date-time>