Get One Onramp
curl --request GET \
--url https://api.bullring.finance/v2/ramp/{subaccountId}/banking/onramp/{onrampId} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v2/ramp/{subaccountId}/banking/onramp/{onrampId}"
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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}', 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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}",
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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}"
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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v2/ramp/{subaccountId}/banking/onramp/{onrampId}")
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{
"id": "28ec3842-88d3-44d8-ac25-fce61c2e6fc0",
"status": "pending",
"type": "onramp",
"created_at": "2026-01-30T13:39:27.348Z",
"account_id": "bb9bb7f8-53a1-4d2b-9d44-972462772789",
"client_onramp_reference": "5a26b319-fc68-4ee2-83f2-198895716135",
"from": {
"amount": "94.42",
"currency": "BRL"
},
"to": {
"asset": "USDC",
"gross_amount": "95.46",
"net_amount": "94.42",
"address": "2fFUHpCEXhdQtSxompq8qbyU7EjjrtkMnr7ZT4ovF9A9"
},
"pricing": {
"fx_rate": "0.19092881",
"fees": {
"onramp_fee": "1.5",
"onramp_fee_currency": "brl",
"network_fee": "0.75",
"network_fee_asset": "USDC",
"total_fees": "5.43",
"total_fees_currency": "brl"
}
},
"settlement": {
"collection_id": "e4a38b63-2b06-40bb-8b62-cb415e8994aa"
}
}Onramp
Get One Onramp
Retrieve the status of an onramp transaction.
GET
/
v2
/
ramp
/
{subaccountId}
/
banking
/
onramp
/
{onrampId}
Get One Onramp
curl --request GET \
--url https://api.bullring.finance/v2/ramp/{subaccountId}/banking/onramp/{onrampId} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v2/ramp/{subaccountId}/banking/onramp/{onrampId}"
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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}', 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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}",
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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}"
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/v2/ramp/{subaccountId}/banking/onramp/{onrampId}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v2/ramp/{subaccountId}/banking/onramp/{onrampId}")
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{
"id": "28ec3842-88d3-44d8-ac25-fce61c2e6fc0",
"status": "pending",
"type": "onramp",
"created_at": "2026-01-30T13:39:27.348Z",
"account_id": "bb9bb7f8-53a1-4d2b-9d44-972462772789",
"client_onramp_reference": "5a26b319-fc68-4ee2-83f2-198895716135",
"from": {
"amount": "94.42",
"currency": "BRL"
},
"to": {
"asset": "USDC",
"gross_amount": "95.46",
"net_amount": "94.42",
"address": "2fFUHpCEXhdQtSxompq8qbyU7EjjrtkMnr7ZT4ovF9A9"
},
"pricing": {
"fx_rate": "0.19092881",
"fees": {
"onramp_fee": "1.5",
"onramp_fee_currency": "brl",
"network_fee": "0.75",
"network_fee_asset": "USDC",
"total_fees": "5.43",
"total_fees_currency": "brl"
}
},
"settlement": {
"collection_id": "e4a38b63-2b06-40bb-8b62-cb415e8994aa"
}
}Authorizations
Response
200 - application/json
Successful response
Available options:
pending, paid, completed, failed Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I