Skip to main content
GET
/
v1
/
account
cURL
curl --request GET \
  --url https://api.example.com/v1/account \
  --header 'x-access-id: <api-key>'
{
  "accounts": [
    {
      "account_name": "<string>",
      "account_number": "<string>",
      "account_type": "checking_account",
      "balance": {
        "amount_in_cents": 123,
        "currency": "<string>"
      },
      "branch": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "id": 123,
      "legal_entity": {
        "address": {
          "city": "<string>",
          "country": "<string>",
          "neighborhood": "<string>",
          "number": "<string>",
          "postal_code": "<string>",
          "state": "<string>",
          "street": "<string>",
          "complement": "<string>"
        },
        "legal_name": "<string>",
        "tax_id": {
          "number": "<string>"
        },
        "trading_name": "<string>"
      },
      "status": "active",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-access-id
string
header
required

UUID of the service account (e.g., 550e8400-e29b-41d4-a716-446655440000)

Response

Account details retrieved successfully

accounts
object[]
required