Authorizations
Query Parameters
Page number for pagination
curl --request GET \
--url https://api.bullring.finance/v1/ramp/subaccounts \
--header 'x-api-key: <api-key>'{
"data": [
{
"id": "6a0fd7af-181d-4c0f-b24b-b8cfb739d67a",
"email": "[email protected]",
"balance": "0.00000000",
"balanceCurrency": "USD",
"status": "approved",
"createdAt": "2025-11-19T23:59:29.241Z"
},
{
"id": "c625ca4e-b125-47fd-b090-7c63f51c1630",
"email": "[email protected]",
"balance": "0.00000000",
"balanceCurrency": "USD",
"status": "approved",
"createdAt": "2025-11-19T23:01:16.333Z"
}
],
"meta": {
"total": 5,
"page": 1,
"limit": 10,
"pages": 1
}
}Retrieve a paginated list of all user subaccounts for a particular account.
curl --request GET \
--url https://api.bullring.finance/v1/ramp/subaccounts \
--header 'x-api-key: <api-key>'{
"data": [
{
"id": "6a0fd7af-181d-4c0f-b24b-b8cfb739d67a",
"email": "[email protected]",
"balance": "0.00000000",
"balanceCurrency": "USD",
"status": "approved",
"createdAt": "2025-11-19T23:59:29.241Z"
},
{
"id": "c625ca4e-b125-47fd-b090-7c63f51c1630",
"email": "[email protected]",
"balance": "0.00000000",
"balanceCurrency": "USD",
"status": "approved",
"createdAt": "2025-11-19T23:01:16.333Z"
}
],
"meta": {
"total": 5,
"page": 1,
"limit": 10,
"pages": 1
}
}Page number for pagination