GET
/
receivers
/
{receiverId}
/
blockchain-accounts
curl --request GET \
  --url https://extensions-sandbox.lumx.io/payments/receivers/{receiverId}/blockchain-accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "wa_000000000000",
    "name": "Blockchain Account",
    "network": "Base",
    "address": "0x5E74A480F330705640ED07E870F893e72238c8d0"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

receiverId
string
required

Response

200 - application/json
id
string
required

The ID of blockchain account.

name
string
required

Display name of the blockchain account.

Required string length: 1 - 100
network
enum<string>
required

Blockchain network.

Available options:
Ethereum,
Base,
Arbitrum,
Polygon
address
string
required

Wallet public address.