Get Deposit Channels
curl --request GET \
--url https://api.bullring.finance/v1/ramp/banking/channels \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v1/ramp/banking/channels"
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/banking/channels', 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/banking/channels",
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/banking/channels"
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/banking/channels")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v1/ramp/banking/channels")
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{
"USDC": {
"channels": [
{
"id": "usdc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "USDC",
"status": "active",
"channelType": "crypto",
"rampType": "deposit"
}
],
"networks": [
{
"id": "eth-sepolia-network-id-bullring-finance",
"name": "Ethereum Sepolia",
"status": "active",
"country": "US",
"currency": "USDC",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdc-channel-id-bullring-finance"
],
"code": "ETH-SEPOLIA"
},
{
"id": "sol-devnet-network-id-bullring-finance",
"name": "Solana Devnet",
"status": "active",
"country": "US",
"currency": "USDC",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdc-channel-id-bullring-finance"
],
"code": "SOL-DEVNET"
}
]
},
"USD": {
"channels": [
{
"max": 1500000000000000000,
"currency": "USD",
"status": "active",
"min": 0,
"channelType": "bank",
"rampType": "deposit",
"id": "usd-channel-id-bullring-finance"
}
],
"networks": []
},
"USDT": {
"channels": [
{
"id": "usdt-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "USDT",
"status": "active",
"channelType": "crypto",
"rampType": "deposit"
}
],
"networks": [
{
"id": "eth-sepolia-network-id-bullring-finance",
"name": "Ethereum Sepolia",
"status": "active",
"country": "US",
"currency": "USDT",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdt-channel-id-bullring-finance"
],
"code": "ETH-SEPOLIA"
},
{
"id": "sol-devnet-network-id-bullring-finance",
"name": "Solana Devnet",
"status": "active",
"country": "US",
"currency": "USDT",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdt-channel-id-bullring-finance"
],
"code": "SOL-DEVNET"
}
]
},
"BTC": {
"channels": [
{
"id": "btc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "BTC",
"status": "active",
"channelType": "lightning",
"rampType": "deposit"
}
],
"networks": [
{
"id": "bitcoin-network-id-bullring-finance",
"name": "Lightning Network",
"status": "active",
"country": "US",
"currency": "BTC",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"btc-channel-id-bullring-finance"
],
"code": "BTC"
}
]
},
"NGN": {
"channels": [
{
"id": "ngn-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "NGN",
"status": "active",
"channelType": "bank",
"rampType": "deposit"
},
{
"id": "ngn-otc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "NGN",
"status": "active",
"channelType": "otc",
"rampType": "deposit"
}
],
"networks": [
{
"id": "ngn-network-id-bullring-finance",
"name": "Bank",
"status": "active",
"country": "US",
"currency": "NGN",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ngn-channel-id-bullring-finance"
],
"code": "NGN"
},
{
"id": "ngn-otc-network-id-bullring-finance",
"name": "OTC (Over The Counter)",
"status": "active",
"country": "US",
"currency": "NGN",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ngn-otc-channel-id-bullring-finance"
],
"code": "NGN"
}
]
},
"ZMW": {
"channels": [
{
"id": "zmw-otc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "ZMW",
"status": "active",
"channelType": "otc",
"rampType": "deposit"
},
{
"id": "zmw-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "ZMW",
"status": "active",
"channelType": "momo",
"rampType": "deposit"
}
],
"networks": [
{
"id": "zmw-network-id-bullring-finance",
"name": "OTC (Over The Counter)",
"status": "active",
"country": "US",
"currency": "ZMW",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"zmw-otc-channel-id-bullring-finance"
],
"code": "ZMW"
},
{
"id": "zmw-network-id-bullring-finance",
"name": "Mobile Money",
"status": "active",
"country": "US",
"currency": "ZMW",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"zmw-channel-id-bullring-finance"
],
"code": "ZMW"
}
]
},
"GHS": {
"channels": [
{
"id": "ghs-otc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "GHS",
"status": "active",
"channelType": "otc",
"rampType": "deposit"
},
{
"id": "ghs-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "GHS",
"status": "active",
"channelType": "momo",
"rampType": "deposit"
}
],
"networks": [
{
"id": "ghs-network-id-bullring-finance",
"name": "OTC (Over The Counter)",
"status": "active",
"country": "US",
"currency": "GHS",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ghs-otc-channel-id-bullring-finance"
],
"code": "GHS"
},
{
"id": "ghs-network-id-bullring-finance",
"name": "Mobile Money",
"status": "active",
"country": "US",
"currency": "GHS",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ghs-channel-id-bullring-finance"
],
"code": "GHS"
}
]
}
}{
"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"
}Deposits
Get Deposit Channels
Retrieve a list of available deposit channels.
GET
/
v1
/
ramp
/
banking
/
channels
Get Deposit Channels
curl --request GET \
--url https://api.bullring.finance/v1/ramp/banking/channels \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bullring.finance/v1/ramp/banking/channels"
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/banking/channels', 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/banking/channels",
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/banking/channels"
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/banking/channels")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bullring.finance/v1/ramp/banking/channels")
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{
"USDC": {
"channels": [
{
"id": "usdc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "USDC",
"status": "active",
"channelType": "crypto",
"rampType": "deposit"
}
],
"networks": [
{
"id": "eth-sepolia-network-id-bullring-finance",
"name": "Ethereum Sepolia",
"status": "active",
"country": "US",
"currency": "USDC",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdc-channel-id-bullring-finance"
],
"code": "ETH-SEPOLIA"
},
{
"id": "sol-devnet-network-id-bullring-finance",
"name": "Solana Devnet",
"status": "active",
"country": "US",
"currency": "USDC",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdc-channel-id-bullring-finance"
],
"code": "SOL-DEVNET"
}
]
},
"USD": {
"channels": [
{
"max": 1500000000000000000,
"currency": "USD",
"status": "active",
"min": 0,
"channelType": "bank",
"rampType": "deposit",
"id": "usd-channel-id-bullring-finance"
}
],
"networks": []
},
"USDT": {
"channels": [
{
"id": "usdt-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "USDT",
"status": "active",
"channelType": "crypto",
"rampType": "deposit"
}
],
"networks": [
{
"id": "eth-sepolia-network-id-bullring-finance",
"name": "Ethereum Sepolia",
"status": "active",
"country": "US",
"currency": "USDT",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdt-channel-id-bullring-finance"
],
"code": "ETH-SEPOLIA"
},
{
"id": "sol-devnet-network-id-bullring-finance",
"name": "Solana Devnet",
"status": "active",
"country": "US",
"currency": "USDT",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"usdt-channel-id-bullring-finance"
],
"code": "SOL-DEVNET"
}
]
},
"BTC": {
"channels": [
{
"id": "btc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "BTC",
"status": "active",
"channelType": "lightning",
"rampType": "deposit"
}
],
"networks": [
{
"id": "bitcoin-network-id-bullring-finance",
"name": "Lightning Network",
"status": "active",
"country": "US",
"currency": "BTC",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"btc-channel-id-bullring-finance"
],
"code": "BTC"
}
]
},
"NGN": {
"channels": [
{
"id": "ngn-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "NGN",
"status": "active",
"channelType": "bank",
"rampType": "deposit"
},
{
"id": "ngn-otc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 0,
"currency": "NGN",
"status": "active",
"channelType": "otc",
"rampType": "deposit"
}
],
"networks": [
{
"id": "ngn-network-id-bullring-finance",
"name": "Bank",
"status": "active",
"country": "US",
"currency": "NGN",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ngn-channel-id-bullring-finance"
],
"code": "NGN"
},
{
"id": "ngn-otc-network-id-bullring-finance",
"name": "OTC (Over The Counter)",
"status": "active",
"country": "US",
"currency": "NGN",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ngn-otc-channel-id-bullring-finance"
],
"code": "NGN"
}
]
},
"ZMW": {
"channels": [
{
"id": "zmw-otc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "ZMW",
"status": "active",
"channelType": "otc",
"rampType": "deposit"
},
{
"id": "zmw-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "ZMW",
"status": "active",
"channelType": "momo",
"rampType": "deposit"
}
],
"networks": [
{
"id": "zmw-network-id-bullring-finance",
"name": "OTC (Over The Counter)",
"status": "active",
"country": "US",
"currency": "ZMW",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"zmw-otc-channel-id-bullring-finance"
],
"code": "ZMW"
},
{
"id": "zmw-network-id-bullring-finance",
"name": "Mobile Money",
"status": "active",
"country": "US",
"currency": "ZMW",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"zmw-channel-id-bullring-finance"
],
"code": "ZMW"
}
]
},
"GHS": {
"channels": [
{
"id": "ghs-otc-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "GHS",
"status": "active",
"channelType": "otc",
"rampType": "deposit"
},
{
"id": "ghs-channel-id-bullring-finance",
"max": 1500000000000000000,
"min": 5000,
"currency": "GHS",
"status": "active",
"channelType": "momo",
"rampType": "deposit"
}
],
"networks": [
{
"id": "ghs-network-id-bullring-finance",
"name": "OTC (Over The Counter)",
"status": "active",
"country": "US",
"currency": "GHS",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ghs-otc-channel-id-bullring-finance"
],
"code": "GHS"
},
{
"id": "ghs-network-id-bullring-finance",
"name": "Mobile Money",
"status": "active",
"country": "US",
"currency": "GHS",
"accountNumberType": "address",
"countryAccountNumberType": "address",
"channelIds": [
"ghs-channel-id-bullring-finance"
],
"code": "GHS"
}
]
}
}{
"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