curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/platform/external-accounts \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"id": "ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965",
"status": "ACTIVE",
"currency": "USD",
"accountInfo": {
"accountType": "BRL_ACCOUNT",
"pixKey": "user@example.com",
"pixKeyType": "CPF",
"taxId": "11111111111"
},
"customerId": "Customer:da459a29-1fb7-41ce-a4cb-eb3a3c9fd7a7",
"platformAccountId": "acc_123456789",
"defaultUmaDepositAccount": false,
"beneficiaryVerificationStatus": "MATCHED",
"beneficiaryVerifiedData": {
"fullName": "John Doe"
},
"cryptoNetwork": "SOLANA_MAINNET"
}
]
}Retrieve a list of all external accounts that belong to the platform, as opposed to an individual customer.
These accounts are used for platform-wide operations such as receiving funds from external sources or managing platform-level payment destinations.
curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/platform/external-accounts \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"id": "ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965",
"status": "ACTIVE",
"currency": "USD",
"accountInfo": {
"accountType": "BRL_ACCOUNT",
"pixKey": "user@example.com",
"pixKeyType": "CPF",
"taxId": "11111111111"
},
"customerId": "Customer:da459a29-1fb7-41ce-a4cb-eb3a3c9fd7a7",
"platformAccountId": "acc_123456789",
"defaultUmaDepositAccount": false,
"beneficiaryVerificationStatus": "MATCHED",
"beneficiaryVerifiedData": {
"fullName": "John Doe"
},
"cryptoNetwork": "SOLANA_MAINNET"
}
]
}Was this page helpful?