Skip to main content
GET
/
customers
/
{id}
Read a customer
curl --request GET \
  --url https://api.lumx.io/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "BUSINESS",
"legalName": "Lumx S.A",
"taxId": "42.887.120/0001-00",
"incorporationDate": "2020-01-01",
"country": "BRA",
"email": "hello@lumx.io",
"walletAddress": "0x1234567890123456789012345678901234567890",
"blockExplorerUrl": "https://amoy.polygonscan.com/address/0x1234567890123456789012345678901234567890",
"balances": [
{
"currency": "USDC",
"amount": "10000.000000",
"updatedAt": "2021-01-01T00:00:00Z"
},
{
"currency": "USDT",
"amount": "10000.000000",
"updatedAt": "2021-01-01T00:00:00Z"
}
],
"verification": {
"status": "NOT_STARTED",
"level": "STANDARD",
"link": "https://in.sumsub.com/websdk/p/sbx_aA00bB11cC33dD44"
},
"transactionLimits": {
"single": {
"max": "10000.00"
},
"daily": {
"max": "100000.00",
"used": "0.00",
"remaining": "100000.00"
},
"monthly": {
"max": "1000000.00",
"used": "0.00",
"remaining": "1000000.00"
}
},
"createdAt": "2021-01-01T00:00:00Z",
"updatedAt": "2021-01-01T00:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header on the format Bearer <API_KEY>.

Path Parameters

id
string<uuid>
required

Customer's unique identifier.

Query Parameters

includeBalances
boolean

Whether to include balances in the response body.

includeTransactionLimits
boolean

Whether to include transaction limits in the response body.

Response

200 - application/json

Resource successfully retrieved.

id
string<uuid>

Customer's unique identifier.

Example:

"3c90c3cc-0d44-4b50-8888-8dd25736052a"

type
enum<string>

Customer's type.

Available options:
BUSINESS

Customer's legal name.

Example:

"Lumx S.A"

taxId
string

Customer's tax ID.

Example:

"42.887.120/0001-00"

incorporationDate
string<date>

Customer's incorporation date.

Example:

"2020-01-01"

country
string

Customer's country (ISO 3166-1 alpha-3).

Example:

"BRA"

email
string

Customer's email.

Example:

"hello@lumx.io"

walletAddress
string

Customer's wallet address.

Example:

"0x1234567890123456789012345678901234567890"

blockExplorerUrl
string

Customer's wallet block explorer URL.

Example:

"https://amoy.polygonscan.com/address/0x1234567890123456789012345678901234567890"

balances
object[]

Customer's wallet balances.

wallets
object[]

Customer's wallets by blockchain.

verification
object

Customer's verification.

transactionLimits
object

Customer's transaction limits.

createdAt
string<date-time>

Creation date and time (UTC).

Example:

"2021-01-01T00:00:00Z"

updatedAt
string<date-time>

Last update date and time (UTC).

Example:

"2021-01-01T00:00:00Z"