IBExWalletAPI

User's IBANs

Return all IBANs associated with the authenticated user's wallet addresses, including their status and blockchain chain.

GET
/v1.2/users/me/ibans

Authorization

AuthorizationRequiredBearer <token>

In: header

curl -X GET "https://passkeys-testnet.ibex.fi/v1.2/users/me/ibans" \
  -H "Authorization: Bearer <token>"

Default Response

{
  "count": 0,
  "ibans": [
    {
      "iban": "string",
      "formatted": "string",
      "bic": "string",
      "holderName": "string",
      "safeAddress": "string",
      "blockchainId": 0,
      "status": "string",
      "provider": "string",
      "accountNumber": "string",
      "dateUsed": "2019-08-24T14:15:22Z"
    }
  ]
}