List All Deposits
curl --request GET \
--url https://api.bullring.finance/v1/ramp/{subaccountId}/banking/deposits \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v1/ramp/{subaccountId}/banking/deposits"
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/{subaccountId}/banking/deposits', 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/{subaccountId}/banking/deposits",
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/{subaccountId}/banking/deposits"
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/{subaccountId}/banking/deposits")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v1/ramp/{subaccountId}/banking/deposits")
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": "24f1be59-ff0a-4d80-bfc1-46dd6e26fc51",
"status": "completed",
"amount": "100.00000000",
"localAmount": "529.00000000",
"currency": "USD",
"localCurrency": "BRL",
"fee": "0.00000000",
"feeCurrency": null,
"country": "BRA",
"rate": "5.2900",
"expiresAt": "2025-11-20T02:48:23.000Z",
"createdAt": "2025-11-20T02:45:55.042Z",
"bankInfo": {
"name": "PIX",
"qr_code_payload": "00020101021226890014br.gov.bcb.pix2567brcode-h.sandbox.starkinfra.com/v2/f9bdab28a91c448cb50fc8857670d0d45204000053039865802BR5908Bullring6015Ciudad de Mexic62070503***63044B88"
},
"reference": "24f1be59ff0a4d80bfc146dd6e26fc51",
"channelId": "brl-channel-id-bullring-finance"
},
{
"id": "50e61499-9ada-4784-b631-afdce55d2a7f",
"status": "completed",
"amount": "100.00000000",
"localAmount": "529.00000000",
"currency": "USD",
"localCurrency": "BRL",
"fee": "0.00000000",
"feeCurrency": null,
"country": "BRA",
"rate": "5.2900",
"expiresAt": "2025-11-20T01:49:35.000Z",
"createdAt": "2025-11-20T01:47:06.742Z",
"bankInfo": {
"name": "PIX",
"qr_code_payload": "00020101021226890014br.gov.bcb.pix2567brcode-h.sandbox.starkinfra.com/v2/0eed3f8b1dab40c983405b48478dde9b5204000053039865802BR5908Bullring6015Ciudad de Mexic62070503***63044B88"
},
"reference": "50e614999ada4784b631afdce55d2a7f",
"channelId": "brl-channel-id-bullring-finance"
}
],
"count": 2,
"page": 1,
"limit": 20,
"totalPages": 1
}{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}{
"error": "Forbidden",
"message": "You do not have permission to access this resource"
}{
"error": "Not Found",
"message": "Subaccount not found"
}Deposits
List All Deposits
Retrieve a list of all deposits for a specific subaccount. All deposit requests require approved KYC.
GET
/
v1
/
ramp
/
{subaccountId}
/
banking
/
deposits
List All Deposits
curl --request GET \
--url https://api.bullring.finance/v1/ramp/{subaccountId}/banking/deposits \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v1/ramp/{subaccountId}/banking/deposits"
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/{subaccountId}/banking/deposits', 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/{subaccountId}/banking/deposits",
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/{subaccountId}/banking/deposits"
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/{subaccountId}/banking/deposits")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v1/ramp/{subaccountId}/banking/deposits")
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": "24f1be59-ff0a-4d80-bfc1-46dd6e26fc51",
"status": "completed",
"amount": "100.00000000",
"localAmount": "529.00000000",
"currency": "USD",
"localCurrency": "BRL",
"fee": "0.00000000",
"feeCurrency": null,
"country": "BRA",
"rate": "5.2900",
"expiresAt": "2025-11-20T02:48:23.000Z",
"createdAt": "2025-11-20T02:45:55.042Z",
"bankInfo": {
"name": "PIX",
"qr_code_payload": "00020101021226890014br.gov.bcb.pix2567brcode-h.sandbox.starkinfra.com/v2/f9bdab28a91c448cb50fc8857670d0d45204000053039865802BR5908Bullring6015Ciudad de Mexic62070503***63044B88"
},
"reference": "24f1be59ff0a4d80bfc146dd6e26fc51",
"channelId": "brl-channel-id-bullring-finance"
},
{
"id": "50e61499-9ada-4784-b631-afdce55d2a7f",
"status": "completed",
"amount": "100.00000000",
"localAmount": "529.00000000",
"currency": "USD",
"localCurrency": "BRL",
"fee": "0.00000000",
"feeCurrency": null,
"country": "BRA",
"rate": "5.2900",
"expiresAt": "2025-11-20T01:49:35.000Z",
"createdAt": "2025-11-20T01:47:06.742Z",
"bankInfo": {
"name": "PIX",
"qr_code_payload": "00020101021226890014br.gov.bcb.pix2567brcode-h.sandbox.starkinfra.com/v2/0eed3f8b1dab40c983405b48478dde9b5204000053039865802BR5908Bullring6015Ciudad de Mexic62070503***63044B88"
},
"reference": "50e614999ada4784b631afdce55d2a7f",
"channelId": "brl-channel-id-bullring-finance"
}
],
"count": 2,
"page": 1,
"limit": 20,
"totalPages": 1
}{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}{
"error": "Forbidden",
"message": "You do not have permission to access this resource"
}{
"error": "Not Found",
"message": "Subaccount not found"
}⌘I