Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/stonfi-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/stonfi-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stonfi-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stonfi-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/stonfi-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "source": "STON.fi API (api.ston.fi, live)",
        "service": "stonfi-api",
        "tvl_usd": 28667606.98,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pools": "Top liquidity pools by volume/apy/liquidity (sort=volume, limit=25).",
            "GET /v1/assets": "Search the token registry by symbol — price, decimals, address (q=TON, limit=20).",
            "GET /v1/overview": "STON.fi DEX current TVL plus lifetime volume, wallets and trades."
        },
        "description": "Live data from STON.fi, the largest decentralised exchange on TON (The Open Network, the Telegram-native blockchain). The overview endpoint returns the DEX's current total value locked plus lifetime volume, wallets and trades; the pools endpoint returns the top liquidity pools by volume, APY or liquidity — token pair, last price, 24h base/quote volume and liquidity, LP token USD price and APY; the assets endpoint searches STON.fi's token registry by symbol and returns each token's live USD price, decimals and contract address. Live, no key, nothing stored. The only TON-native DeFi feed here — distinct from Ethereum, Solana and Sui DEX feeds — this is STON.fi's own TON DEX pool, volume/APY and token-pricing layer.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:55.100Z",
        "request_id": "3c740505-71a9-4de3-9935-87c848a06fc1"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}