/v1/meta
Service metadata & live sample
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/stellarasset-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stellarasset-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stellarasset-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/stellarasset-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"sample": {
"code": "USDC",
"holders": 2232017
},
"source": "public Stellar Horizon API (horizon.stellar.org), keyless",
"service": "stellarasset-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "Asset stats: supply, holders, flags, contract id (code=USDC, issuer=G...).",
"GET /v1/assets": "All issuers of an asset code, sorted by holders (code=USDC).",
"GET /v1/orderbook": "Live DEX order book vs XLM or a counter asset (code, issuer, optional counter_code/counter_issuer)."
},
"description": "Read live Stellar asset and native-DEX data from the public Horizon API: resolve any issued asset to its supply, holders, flags and Soroban contract id; list every issuer of a code to find the canonical one; and pull the live order book for an asset against XLM. The asset-and-market layer for Stellar wallets, anchors and trading tools. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:02.806Z",
"request_id": "8f115b6d-b8e7-4379-b245-0aee1957f8cb"
},
"status": "ok",
"message": "Meta",
"success": true
}