Get All Subaccounts
curl --request GET \
--url https://api.bullring.finance/v1/ramp/subaccount \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v1/ramp/subaccount"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bullring.finance/v1/ramp/subaccount', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bullring.finance/v1/ramp/subaccount",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bullring.finance/v1/ramp/subaccount"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bullring.finance/v1/ramp/subaccount")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v1/ramp/subaccount")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "800f5374-8854-4790-97e0-1fa45a15b672",
"email": "[email protected]",
"status": "approved",
"createdAt": "2025-11-19T16:48:49.565Z",
"kyc": {
"profiles": [
{
"country": "NG",
"status": "approved"
}
]
},
"capabilities": {
"currencies": {
"USD": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"NGN": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"BRL": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"EUR": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"GHS": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"ZMW": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"TZS": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
}
},
"assets": {
"USDT": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"USDC": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"BTC": {
"networks": [
"LIGHTNING"
]
}
}
},
"isParent": true
},
{
"id": "878beae6-e2f5-40a5-b7bf-449c73924aaa",
"email": "[email protected]",
"status": "created",
"createdAt": "2026-01-12T13:09:58.033Z",
"kyc": {
"profiles": []
},
"capabilities": {
"currencies": {
"USD": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"NGN": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"BRL": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"EUR": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"GHS": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"ZMW": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"TZS": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
}
},
"assets": {
"USDT": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"USDC": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"BTC": {
"networks": [
"LIGHTNING"
]
}
}
}
}
],
"meta": {
"total": 25,
"page": 1,
"limit": 15,
"pages": 2
}
}{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}{
"error": "Forbidden",
"message": "You do not have permission to access this resource"
}{
"error": "Not Found",
"message": "Account not found"
}Subaccounts
Get All Subaccounts
Retrieve a paginated list of all user subaccounts for a particular account.
GET
/
v1
/
ramp
/
subaccount
Get All Subaccounts
curl --request GET \
--url https://api.bullring.finance/v1/ramp/subaccount \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v1/ramp/subaccount"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bullring.finance/v1/ramp/subaccount', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bullring.finance/v1/ramp/subaccount",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bullring.finance/v1/ramp/subaccount"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bullring.finance/v1/ramp/subaccount")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v1/ramp/subaccount")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "800f5374-8854-4790-97e0-1fa45a15b672",
"email": "[email protected]",
"status": "approved",
"createdAt": "2025-11-19T16:48:49.565Z",
"kyc": {
"profiles": [
{
"country": "NG",
"status": "approved"
}
]
},
"capabilities": {
"currencies": {
"USD": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"NGN": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"BRL": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"EUR": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"GHS": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"ZMW": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
},
"TZS": {
"canOnramp": true,
"canOfframp": true,
"canDeposit": true,
"canWithdraw": true
}
},
"assets": {
"USDT": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"USDC": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"BTC": {
"networks": [
"LIGHTNING"
]
}
}
},
"isParent": true
},
{
"id": "878beae6-e2f5-40a5-b7bf-449c73924aaa",
"email": "[email protected]",
"status": "created",
"createdAt": "2026-01-12T13:09:58.033Z",
"kyc": {
"profiles": []
},
"capabilities": {
"currencies": {
"USD": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"NGN": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"BRL": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"EUR": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"GHS": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"ZMW": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
},
"TZS": {
"canOnramp": false,
"canOfframp": false,
"canDeposit": false,
"canWithdraw": false
}
},
"assets": {
"USDT": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"USDC": {
"networks": [
"ETHEREUM",
"SOLANA"
]
},
"BTC": {
"networks": [
"LIGHTNING"
]
}
}
}
}
],
"meta": {
"total": 25,
"page": 1,
"limit": 15,
"pages": 2
}
}{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}{
"error": "Forbidden",
"message": "You do not have permission to access this resource"
}{
"error": "Not Found",
"message": "Account not found"
}⌘I