Stablecoins Supported Assets & Insights
curl --request GET \
--url https://api.amberdata.com/blockchains/analytics/stablecoins/information \
--header 'x-api-key: <api-key>'import requests
url = "https://api.amberdata.com/blockchains/analytics/stablecoins/information"
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.amberdata.com/blockchains/analytics/stablecoins/information', 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.amberdata.com/blockchains/analytics/stablecoins/information",
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.amberdata.com/blockchains/analytics/stablecoins/information"
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.amberdata.com/blockchains/analytics/stablecoins/information")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amberdata.com/blockchains/analytics/stablecoins/information")
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{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"analytics": [
"Transfers"
],
"assetAddresses": [
{
"address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9",
"blockchain": "arbitrum-mainnet",
"decimals": 6
},
{
"address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
"blockchain": "avalanche-mainnet",
"decimals": 6
},
{
"address": "0x55d398326f99059ff775485246999027b3197955",
"blockchain": "bnb-mainnet",
"decimals": 18
},
{
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"blockchain": "ethereum-mainnet",
"decimals": 6
},
{
"address": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58",
"blockchain": "optimism-mainnet",
"decimals": 6
},
{
"address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
"blockchain": "polygon-mainnet",
"decimals": 6
},
{
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"blockchain": "tron-mainnet",
"decimals": 6
}
],
"assetName": "Tether USD",
"assetSymbol": "USDT"
}
],
"metadata": {}
}
}Stablecoins
Stablecoins Supported Assets & Insights
Retrieve the collection of supported stablecoins and insights.
GET
/
analytics
/
stablecoins
/
information
Stablecoins Supported Assets & Insights
curl --request GET \
--url https://api.amberdata.com/blockchains/analytics/stablecoins/information \
--header 'x-api-key: <api-key>'import requests
url = "https://api.amberdata.com/blockchains/analytics/stablecoins/information"
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.amberdata.com/blockchains/analytics/stablecoins/information', 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.amberdata.com/blockchains/analytics/stablecoins/information",
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.amberdata.com/blockchains/analytics/stablecoins/information"
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.amberdata.com/blockchains/analytics/stablecoins/information")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amberdata.com/blockchains/analytics/stablecoins/information")
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{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"analytics": [
"Transfers"
],
"assetAddresses": [
{
"address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9",
"blockchain": "arbitrum-mainnet",
"decimals": 6
},
{
"address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
"blockchain": "avalanche-mainnet",
"decimals": 6
},
{
"address": "0x55d398326f99059ff775485246999027b3197955",
"blockchain": "bnb-mainnet",
"decimals": 18
},
{
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"blockchain": "ethereum-mainnet",
"decimals": 6
},
{
"address": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58",
"blockchain": "optimism-mainnet",
"decimals": 6
},
{
"address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
"blockchain": "polygon-mainnet",
"decimals": 6
},
{
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"blockchain": "tron-mainnet",
"decimals": 6
}
],
"assetName": "Tether USD",
"assetSymbol": "USDT"
}
],
"metadata": {}
}
}If the
blockchain query parameter is not provided, the API will return data from all of the supported chains.Contract addresses for an asset are unique per blockchain. If you would like to see the analytics for a specific asset, say USDC across all chains, use the
assetSymbol query parameter and omit the blockchain query parameter.Authorizations
Query Parameters
[optional] The symbol of the asset to filter the dataset by
[optional] The name slug of the chain to filter the dataset by
Available options:
arbitrum-mainnet, avalanche-mainnet, base-mainnet, bnb-mainnet, ethereum-mainnet, polygon-mainnet, optimism-mainnet, tron-mainnet Was this page helpful?
⌘I