Skip to main content
GET
/
customers
Read all customers
curl --request GET \
  --url https://api.lumx.io/customers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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",
      "verification": {
        "status": "NOT_STARTED",
        "level": "STANDARD",
        "link": "https://in.sumsub.com/websdk/p/sbx_aA00bB11cC33dD44"
      },
      "transactionLimits": {
        "single": "1000.00",
        "daily": "10000.00",
        "monthly": "100000.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>.

Query Parameters

size
integer
default:25

Number of customers to return per page.

Required range: 1 <= x <= 100
cursor
string<uuid>

Cursor for pagination. Use the nextCursor or previousCursor from the previous response to get the next or previous page.

Response

200 - application/json

Resources successfully retrieved.

data
object[]

An array containing all customers.