Services/CoinGecko
// DATA

CoinGecko

Crypto prices, market data, and trending coins.

Endpoints
3
From
$0.02
Settle
~400ms
// ENDPOINTS

All routes, one base URL.

base https://mpp.t2000.ai/coingecko

MethodPathFrom
POST
/v1/price
Get price for coins (by ID, vs currencies)
$0.02
POST
/v1/markets
Market data — price, cap, volume, sparkline
$0.02
POST
/v1/trending
Trending coins and searches
$0.02
// EXAMPLE

Two requests. Gasless.

First call returns a 402 with a payment quote. Pay it. Retry with the Payment header. The gateway forwards the response.

curl
$ curl -X POST \
    https://mpp.t2000.ai/coingecko/v1/price \
    -H "Content-Type: application/json" \
    -d '{ "model": "…", "input": "…" }'

# → 402 Payment Required
# → Payment header { quote, recipient, expiry }

$ retry with Payment header
# → 200 OK · response forwarded
@t2000/sdk
const r = await t.pay({
  url: 'https://mpp.t2000.ai/coingecko/v1/price',
  body: { /* CoinGecko payload */ },
});

// → r.json() · 200 OK · gasless · ~400ms