Skip to main content
GET
/
agents
/
{id}
/
wallet
Get agent wallet balance and IBAN
curl --request GET \
  --url https://api.getovra.com/agents/{id}/wallet \
  --header 'Authorization: Bearer <token>'
{
  "agentId": "<string>",
  "issuer": "<string>",
  "walletBalance": {
    "available": 123,
    "pending": 123,
    "total": 123
  },
  "iban": "<string>",
  "deposit": null,
  "internalLedger": {
    "walletBalanceEuros": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Wallet information

agentId
string
issuer
string
walletBalance
object
iban
string | null
deposit
unknown
internalLedger
object