Skip to main content
GET
/
bank-accounts
/
{id}
Read a bank account
curl --request GET \
  --url https://api.lumx.io/bank-accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "a72f5359-ffef-6913-d1da-8g58d491g406",
  "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "Lumx Brazil Operations Account",
  "type": "EXTERNAL",
  "rail": "PIX",
  "currency": "BRL",
  "identifier": {
    "keyType": "CNPJ",
    "keyValue": "42.887.120/0001-00"
  },
  "holder": {
    "relationship": "SELF",
    "legalName": "Lumx S.A",
    "taxId": "42.887.120/0001-00",
    "incorporationDate": "2020-01-01",
    "email": "hello@lumx.io",
    "address": {
      "line1": "Rua Voluntarios da Patria 89",
      "city": "Rio de Janeiro",
      "state": "RJ",
      "postalCode": "22270-000",
      "country": "BRA"
    },
    "verification": {
      "status": "APPROVED",
      "level": "BASIC"
    }
  },
  "createdAt": "2025-10-16T15:30:22.456Z",
  "updatedAt": "2025-10-16T15:30:22.456Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header on the format Bearer <API_KEY>.

Path Parameters

id
string<uuid>
required

Bank account's unique identifier.

Response

200 - application/json

Bank account successfully retrieved.

Bank account's rail is PIX.

id
string<uuid>

Bank account's unique identifier.

customerId
string<uuid>

Customer's unique identifier.

name
string

Bank account's display name.

Example:

"Lumx Bank Account 1"

type
enum<string>

Bank account's type.

Available options:
EXTERNAL
rail
enum<string>

Bank account's payment rail.

Available options:
PIX
currency
enum<string>

Bank account's currency.

Available options:
BRL
identifier
object

Bank account's identifier.

holder
object

Bank account's holder.

createdAt
string<date-time>

Creation date and time (UTC).

updatedAt
string<date-time>

Last update date and time (UTC).