Live cryptocurrency price API: current USD price for any coin by CoinGecko id ('bitcoin',
Live cryptocurrency price API: current USD price for any coin by CoinGecko id ('bitcoin', 'ethereum') or DefiLlama id ('coingecko:bitcoin', 'chain:address' for tokens by contract address). Sourced from DefiLlama's aggregated market feed with the source's own confidence score (0-1) and the unix timestamp of the observation. Ideal for agents needing spot prices, portfolio valuation, or price checks before on-chain actions. Cached up to 60 seconds; freshness in meta.fetchedAt.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
gateway.stride20k.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x552Cc4A10878C7F20574489D47184249657Ca3f6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"coinId": "bitcoin"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"coinId": "coingecko:bitcoin",
"confidence": 0.99,
"priceUsd": 62397.99,
"sourceTimestamp": 1783132624,
"symbol": "BTC"
},
"endpoint": "/crypto/price/:coinId",
"meta": {
"attribution": null,
"cached": false,
"fetchedAt": "2026-07-04T00:00:00.000Z",
"source": "defillama"
},
"ok": true
},
"type": "json"
}
},
"routeTemplate": "/crypto/price/:coinId",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"coinId": {
"description": "Coin identifier: a CoinGecko id ('bitcoin') or DefiLlama id ('coingecko:bitcoin', '<chain>:<address>').",
"type": "string"
}
},
"required": [
"coinId"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"properties": {
"coinId": {
"description": "Normalized DefiLlama coin id used for the lookup.",
"type": "string"
},
"confidence": {
"description": "Source-reported confidence, 0–1 (1 = highest).",
"type": "number"
},
"priceUsd": {
"description": "Current price in USD.",
"type": "number"
},
"sourceTimestamp": {
"description": "Unix timestamp (seconds) of the source's observation.",
"type": "integer"
},
"symbol": {
"description": "Ticker symbol reported by the source.",
"type": "string"
}
},
"required": [
"coinId",
"priceUsd",
"sourceTimestamp"
],
"type": "object"
},
"endpoint": {
"description": "Always \"/crypto/price/:coinId\".",
"type": "string"
},
"meta": {
"properties": {
"attribution": {
"description": "Licensing attribution when the source requires it.",
"type": [
"string",
"null"
]
},
"cached": {
"description": "Whether this response was served from cache.",
"type": "boolean"
},
"fetchedAt": {
"description": "ISO 8601 time the data was actually retrieved from the upstream.",
"type": "string"
},
"source": {
"description": "Upstream source: defillama.",
"type": "string"
}
},
"required": [
"source",
"cached",
"fetchedAt"
],
"type": "object"
},
"ok": {
"description": "true on success.",
"type": "boolean"
}
},
"required": [
"ok",
"endpoint",
"data",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gateway.stride20k.com/crypto/price/:coinId" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gateway.stride20k.com/crypto/price/:coinId");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://gateway.stride20k.com/crypto/price/:coinId")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1166.json, and this resource appears in /discovery/resources and /discovery/search.