Fetch Deposit Assets
curl --request GET \
--url https://api.breet.io/v1/trades/assets \
--header 'X-Breet-Env: <api-key>' \
--header 'x-app-id: <api-key>' \
--header 'x-app-secret: <api-key>'import requests
url = "https://api.breet.io/v1/trades/assets"
headers = {
"x-app-id": "<api-key>",
"x-app-secret": "<api-key>",
"X-Breet-Env": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'x-app-id': '<api-key>',
'x-app-secret': '<api-key>',
'X-Breet-Env': '<api-key>'
}
};
fetch('https://api.breet.io/v1/trades/assets', 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.breet.io/v1/trades/assets",
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-Breet-Env: <api-key>",
"x-app-id: <api-key>",
"x-app-secret: <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.breet.io/v1/trades/assets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-app-id", "<api-key>")
req.Header.Add("x-app-secret", "<api-key>")
req.Header.Add("X-Breet-Env", "<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.breet.io/v1/trades/assets")
.header("x-app-id", "<api-key>")
.header("x-app-secret", "<api-key>")
.header("X-Breet-Env", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breet.io/v1/trades/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-app-id"] = '<api-key>'
request["x-app-secret"] = '<api-key>'
request["X-Breet-Env"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "assets retrieved successfully",
"success": true,
"data": [
{
"id": "67063f653b4a1f6c7a60ec58",
"name": "Tron Test",
"identifier": "TRX_TEST",
"symbol": "TRX",
"icon": "https://assets.breet.io/dev/sell/assets/TRX_TEST.png",
"txLink": "https://nile.tronscan.org/#/transaction/",
"minimum": 5,
"flagFeeUSD": 3,
"type": "BASE_ASSET",
"isAccountBased": true,
"network": "Tron",
"confirmations": 19,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec55",
"name": "Ethereum Test (Sepolia)",
"identifier": "ETH_TEST5",
"symbol": "ETH",
"icon": "https://assets.breet.io/dev/sell/assets/ETH_TEST5.png",
"txLink": "https://sepolia.etherscan.io/tx/",
"minimum": 6000,
"flagFeeUSD": 6,
"type": "BASE_ASSET",
"isAccountBased": true,
"network": "Ethereum",
"confirmations": 12,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec56",
"name": "Litecoin Test",
"identifier": "LTC_TEST",
"symbol": "LTC",
"icon": "https://assets.breet.io/dev/sell/assets/LTC_TEST.png",
"txLink": "https://sochain.com/tx/LTCTEST/",
"minimum": 51000,
"flagFeeUSD": 2,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Litecoin",
"confirmations": 6,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec57",
"name": "Solana Test",
"identifier": "SOL_TEST",
"symbol": "SOL",
"icon": "https://assets.breet.io/dev/sell/assets/SOL_TEST.png",
"txLink": "https://solana.fm/tx/",
"minimum": 5000,
"flagFeeUSD": 10,
"type": "BASE_ASSET",
"isAccountBased": true,
"network": "Solana",
"confirmations": 1,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec51",
"name": "Bitcoin Cash Test",
"identifier": "BCH_TEST",
"symbol": "BCH",
"icon": "https://assets.breet.io/dev/sell/assets/BCH_TEST.png",
"txLink": "https://blockexplorer.one/bitcoin-cash/testnet/tx/",
"minimum": 5000,
"flagFeeUSD": 5,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Bitcoin_Cash",
"confirmations": 6,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec53",
"name": "Bitcoin Test",
"identifier": "BTC_TEST",
"symbol": "BTC",
"icon": "https://assets.breet.io/dev/sell/assets/BTC_TEST.png",
"txLink": "https://blockchair.com/bitcoin/transaction/",
"minimum": 4000,
"flagFeeUSD": 2,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Bitcoin",
"confirmations": 3,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec54",
"name": "Doge Coin Test",
"identifier": "DOGE_TEST",
"symbol": "DOGE",
"icon": "https://assets.breet.io/dev/sell/assets/DOGE_TEST.png",
"txLink": "https://sochain.com/tx/DOGEEST/",
"minimum": 5000,
"flagFeeUSD": 2,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Dogecoin",
"confirmations": 6,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec59",
"name": "USD Coin Test (Goerli)",
"identifier": "USDC_TEST3",
"symbol": "USDC",
"icon": "https://assets.breet.io/dev/sell/assets/USDC_TEST3.png",
"txLink": "https://www.oklink.com/goerli-test/tx/",
"minimum": 5,
"flagFeeUSD": 2,
"type": "ERC20",
"isAccountBased": true,
"network": "Ethereum",
"confirmations": 12,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
}
],
"meta": {},
"summary": {},
"stats": {}
}Assets
Fetch Deposit Assets
Retrieves the full list of supported deposit/sell assets, available networks, and configuration settings.
GET
/
trades
/
assets
Fetch Deposit Assets
curl --request GET \
--url https://api.breet.io/v1/trades/assets \
--header 'X-Breet-Env: <api-key>' \
--header 'x-app-id: <api-key>' \
--header 'x-app-secret: <api-key>'import requests
url = "https://api.breet.io/v1/trades/assets"
headers = {
"x-app-id": "<api-key>",
"x-app-secret": "<api-key>",
"X-Breet-Env": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'x-app-id': '<api-key>',
'x-app-secret': '<api-key>',
'X-Breet-Env': '<api-key>'
}
};
fetch('https://api.breet.io/v1/trades/assets', 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.breet.io/v1/trades/assets",
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-Breet-Env: <api-key>",
"x-app-id: <api-key>",
"x-app-secret: <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.breet.io/v1/trades/assets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-app-id", "<api-key>")
req.Header.Add("x-app-secret", "<api-key>")
req.Header.Add("X-Breet-Env", "<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.breet.io/v1/trades/assets")
.header("x-app-id", "<api-key>")
.header("x-app-secret", "<api-key>")
.header("X-Breet-Env", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breet.io/v1/trades/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-app-id"] = '<api-key>'
request["x-app-secret"] = '<api-key>'
request["X-Breet-Env"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "assets retrieved successfully",
"success": true,
"data": [
{
"id": "67063f653b4a1f6c7a60ec58",
"name": "Tron Test",
"identifier": "TRX_TEST",
"symbol": "TRX",
"icon": "https://assets.breet.io/dev/sell/assets/TRX_TEST.png",
"txLink": "https://nile.tronscan.org/#/transaction/",
"minimum": 5,
"flagFeeUSD": 3,
"type": "BASE_ASSET",
"isAccountBased": true,
"network": "Tron",
"confirmations": 19,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec55",
"name": "Ethereum Test (Sepolia)",
"identifier": "ETH_TEST5",
"symbol": "ETH",
"icon": "https://assets.breet.io/dev/sell/assets/ETH_TEST5.png",
"txLink": "https://sepolia.etherscan.io/tx/",
"minimum": 6000,
"flagFeeUSD": 6,
"type": "BASE_ASSET",
"isAccountBased": true,
"network": "Ethereum",
"confirmations": 12,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec56",
"name": "Litecoin Test",
"identifier": "LTC_TEST",
"symbol": "LTC",
"icon": "https://assets.breet.io/dev/sell/assets/LTC_TEST.png",
"txLink": "https://sochain.com/tx/LTCTEST/",
"minimum": 51000,
"flagFeeUSD": 2,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Litecoin",
"confirmations": 6,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec57",
"name": "Solana Test",
"identifier": "SOL_TEST",
"symbol": "SOL",
"icon": "https://assets.breet.io/dev/sell/assets/SOL_TEST.png",
"txLink": "https://solana.fm/tx/",
"minimum": 5000,
"flagFeeUSD": 10,
"type": "BASE_ASSET",
"isAccountBased": true,
"network": "Solana",
"confirmations": 1,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec51",
"name": "Bitcoin Cash Test",
"identifier": "BCH_TEST",
"symbol": "BCH",
"icon": "https://assets.breet.io/dev/sell/assets/BCH_TEST.png",
"txLink": "https://blockexplorer.one/bitcoin-cash/testnet/tx/",
"minimum": 5000,
"flagFeeUSD": 5,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Bitcoin_Cash",
"confirmations": 6,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec53",
"name": "Bitcoin Test",
"identifier": "BTC_TEST",
"symbol": "BTC",
"icon": "https://assets.breet.io/dev/sell/assets/BTC_TEST.png",
"txLink": "https://blockchair.com/bitcoin/transaction/",
"minimum": 4000,
"flagFeeUSD": 2,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Bitcoin",
"confirmations": 3,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec54",
"name": "Doge Coin Test",
"identifier": "DOGE_TEST",
"symbol": "DOGE",
"icon": "https://assets.breet.io/dev/sell/assets/DOGE_TEST.png",
"txLink": "https://sochain.com/tx/DOGEEST/",
"minimum": 5000,
"flagFeeUSD": 2,
"type": "BASE_ASSET",
"isAccountBased": false,
"network": "Dogecoin",
"confirmations": 6,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
},
{
"id": "67063f653b4a1f6c7a60ec59",
"name": "USD Coin Test (Goerli)",
"identifier": "USDC_TEST3",
"symbol": "USDC",
"icon": "https://assets.breet.io/dev/sell/assets/USDC_TEST3.png",
"txLink": "https://www.oklink.com/goerli-test/tx/",
"minimum": 5,
"flagFeeUSD": 2,
"type": "ERC20",
"isAccountBased": true,
"network": "Ethereum",
"confirmations": 12,
"rate": {
"NGN": 1000,
"GHS": 90.9090909090909
}
}
],
"meta": {},
"summary": {},
"stats": {}
}Authorizations
Your application ID from the Breet dashboard
Your application secret from the Breet dashboard
Environment selector: development or production
Response
List of supported assets returned successfully
Was this page helpful?