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

Trending liquidity pools on a network

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

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

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

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

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

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

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

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

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

{
    "data": {
        "count": 20,
        "pools": [
            {
                "dex": "uniswap_v2",
                "name": "SPCX / WETH",
                "fdv_usd": 2924599.3,
                "network": "eth",
                "txns_24h": {
                    "buys": 2234,
                    "sells": 1060,
                    "buyers": 1272,
                    "sellers": 404
                },
                "created_at": "2026-05-25T00:54:11Z",
                "reserve_usd": 158316.15,
                "pool_address": "0x4438a8af0231b27f54da4b6c32a56d1357b369e7",
                "market_cap_usd": null,
                "volume_24h_usd": 1362717.34,
                "base_token_address": "0xcb891c8f1e3a4d04229e4d871dc27124411d8952",
                "quote_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "base_token_price_usd": 0.0029128364,
                "price_change_24h_pct": -24.873,
                "quote_token_price_usd": 1655.9944562
            },
            {
                "dex": "uniswap_v2",
                "name": "ASTEROID / WETH",
                "fdv_usd": 44825409.85,
                "network": "eth",
                "txns_24h": {
                    "buys": 1816,
                    "sells": 1338,
                    "buyers": 774,
                    "sellers": 562
                },
                "created_at": "2024-09-10T10:18:23Z",
                "reserve_usd": 1911757.2,
                "pool_address": "0x76a411f14a704099ba476ce8dffc288a53295218",
                "market_cap_usd": 44826622.28,
                "volume_24h_usd": 3051494.85,
                "base_token_address": "0xf280b16ef293d8e534e370794ef26bf312694126",
                "quote_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "base_token_price_usd": 0.0001063902,
                "price_change_24h_pct": 16.142,
                "quote_token_price_usd": 1655.9944562
            },
            {
                "dex": "uniswap_v2",
                "name": "DOGEUS / WETH",
                "fdv_usd": 4563237.14,
                "network": "eth",
                "txns_24h": {
                    "buys": 2043,
                    "sells": 1739,
                    "buyers": 852,
                    "sellers": 721
                },
                "created_at": "2026-05-27T13:15:35Z",
                "reserve_usd": 208631.8,
                "pool_address": "0x12d44f8b4d3e28bdeb35e8e2e6585dfcc33eda5f",
                "market_cap_usd": 4563237.14,
                "volume_24h_usd": 1237429.22,
                "base_token_address": "0x759f8b83db57033aed95545694f6ada480b6e987",
                "quote_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "base_token_price_usd": 0.0045632371,
                "price_change_24h_pct": -8.995,
                "quote_token_price_usd": 1657.15863959
            },
            {
                "dex": "uniswap_v2",
                "na
…