Python
import os
from datetime import date
from artemis import Artemis
client = Artemis()
response = client.stablecoin.fetch_supply_peg_stability(
api_key=os.environ["ARTEMIS_API_KEY"],
symbols="eth,sol,arbitrum",
start_date=date(2026, 1, 1),
end_date=date(2026, 2, 1),
)
print(response.data)
curl --request GET \
--url https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/', 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://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"symbols": {
"arbitrum": {
"STABLECOIN_SUPPLY_PEG_STABILITY": [
{
"date": "2026-01-01",
"val": 15000000
},
{
"date": "2026-01-02",
"val": 15200000
},
{
"date": "2026-01-03",
"val": 15100000
}
]
},
"eth": {
"STABLECOIN_SUPPLY_PEG_STABILITY": [
{
"date": "2026-01-01",
"val": 900000000
},
{
"date": "2026-01-02",
"val": 910000000
},
{
"date": "2026-01-03",
"val": 905000000
}
]
},
"sol": {
"STABLECOIN_SUPPLY_PEG_STABILITY": [
{
"date": "2026-01-01",
"val": 30000000
},
{
"date": "2026-01-02",
"val": 31000000
},
{
"date": "2026-01-03",
"val": 30500000
}
]
}
}
}
}Stablecoins
Fetch Stablecoin Supply (Peg Stability)
Peg-stability-module (PSM) held supply — e.g. the DAI PSM. One of the five locked buckets subtracted from total minted supply to derive circulating supply.
Identity:
STABLECOIN_SUPPLY_CIRCULATING = STABLECOIN_SUPPLY_TOTAL - (STABLECOIN_SUPPLY_BRIDGED + STABLECOIN_SUPPLY_PREMINT + STABLECOIN_SUPPLY_PEG_STABILITY + other locked buckets)
Dash-Separated Symbol Syntax:
- Simple:
eth,sol,usdc - Chain-specific:
usdc-eth(USDC on Ethereum) - Category-specific:
mev-usdc(USDC tagged to MEV) - Category-chain:
payments-eth(Payments on Ethereum)
GET
/
data
/
api
/
STABLECOIN_SUPPLY_PEG_STABILITY
/
Python
import os
from datetime import date
from artemis import Artemis
client = Artemis()
response = client.stablecoin.fetch_supply_peg_stability(
api_key=os.environ["ARTEMIS_API_KEY"],
symbols="eth,sol,arbitrum",
start_date=date(2026, 1, 1),
end_date=date(2026, 2, 1),
)
print(response.data)
curl --request GET \
--url https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/', 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://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/data/api/STABLECOIN_SUPPLY_PEG_STABILITY/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"symbols": {
"arbitrum": {
"STABLECOIN_SUPPLY_PEG_STABILITY": [
{
"date": "2026-01-01",
"val": 15000000
},
{
"date": "2026-01-02",
"val": 15200000
},
{
"date": "2026-01-03",
"val": 15100000
}
]
},
"eth": {
"STABLECOIN_SUPPLY_PEG_STABILITY": [
{
"date": "2026-01-01",
"val": 900000000
},
{
"date": "2026-01-02",
"val": 910000000
},
{
"date": "2026-01-03",
"val": 905000000
}
]
},
"sol": {
"STABLECOIN_SUPPLY_PEG_STABILITY": [
{
"date": "2026-01-01",
"val": 30000000
},
{
"date": "2026-01-02",
"val": 31000000
},
{
"date": "2026-01-03",
"val": 30500000
}
]
}
}
}
}Query Parameters
Chain symbols, comma-separated. Supports dash-separated syntax
Start date in YYYY-MM-DD format
End date in YYYY-MM-DD format
Time-bucket granularity for returned series.
Available options:
DAY, WEEK, MONTH, QUARTER, YEAR Maximum number of data points to return (1–1000).
Required range:
1 <= x <= 1000Your Artemis API key
Response
200 - application/json
Stablecoin Peg Stability Supply data
Object where keys are symbol names (e.g., 'eth', 'sol') and values contain metric data
Show child attributes
Show child attributes
