Fetch All Currencies
curl --request GET \
--url https://secureapi.tender.cash/v1/api/system/currency \
--header 'x-access-id: <api-key>'const options = {method: 'GET', headers: {'x-access-id': '<api-key>'}};
fetch('https://secureapi.tender.cash/v1/api/system/currency', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://secureapi.tender.cash/v1/api/system/currency"
headers = {"x-access-id": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://secureapi.tender.cash/v1/api/system/currency",
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-access-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"status": "<string>",
"message": "<string>",
"data": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"isContract": true,
"chains": [
"<string>"
],
"priceTag": "<string>",
"fee": {},
"symbol": "<string>",
"status": "<string>",
"contractAddress": {}
}
]
}System
Fetch All Currencies
Retrieve all supported currencies with their chain mappings
GET
/
v1
/
api
/
system
/
currency
Fetch All Currencies
curl --request GET \
--url https://secureapi.tender.cash/v1/api/system/currency \
--header 'x-access-id: <api-key>'const options = {method: 'GET', headers: {'x-access-id': '<api-key>'}};
fetch('https://secureapi.tender.cash/v1/api/system/currency', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://secureapi.tender.cash/v1/api/system/currency"
headers = {"x-access-id": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://secureapi.tender.cash/v1/api/system/currency",
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-access-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"status": "<string>",
"message": "<string>",
"data": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"isContract": true,
"chains": [
"<string>"
],
"priceTag": "<string>",
"fee": {},
"symbol": "<string>",
"status": "<string>",
"contractAddress": {}
}
]
}Auth method: Basic (Access ID) — this endpoint only requires your
x-access-id header. No request signing is needed. See
Authentication.Headers
string
required
Your API access ID provided by TenderExample:
"your-access-id-here"Response
string
required
Status of the API requestExample:
"success"string
required
Human-readable message describing the resultExample:
"success"array
required
Array of all supported currencies across all chains
Show currency object
Show currency object
string
Unique MongoDB identifier for the currencyExample:
"64fc4cda43812c15552311d7"string
Unique identifier for the currencyExample:
"usdc"string
Display name of the currencyExample:
"USDC"string
URL to the currency’s icon imageExample:
"https://secureapi.tender.cash/icons/usdc.png"boolean
Whether this is a smart contract tokenExample:
truearray
Array of chains where this currency is availableExample:
["avalanche", "ethereum", "polygon", "solana"]string
Price identifier for market dataExample:
"usd-coin"object
Fee configuration per chainExample:
{ "ethereum": "25", "polygon": "3" }string
Currency symbolExample:
"USDC"string
Current status of the currencyExample:
"active"object
Smart contract addresses per chain
object
Activation fees per chain (if applicable)Example:
{ "stellar": "1.1" }array
Compatible wallet applicationsExample:
["beam"]string
ISO 8601 timestamp when the currency was addedExample:
"2023-09-05T19:29:57.194Z"string
ISO 8601 timestamp when the currency was last updatedExample:
"2024-08-03T23:02:51.067Z"Authorizations
Basic (Access ID) authentication. Only the x-access-id header is required; no request signing.
Headers
Your API access ID provided by Tender