Live cryptocurrency prices and market data — a token price API for agents
Live cryptocurrency prices and market data — a token price API for agents. Look up the current Bitcoin price, Ethereum price or any token price by coin id or common ticker (e.g. bitcoin, eth, sol) and get USD price, market cap, market-cap rank, 24h change %, 24h volume, 24h high/low and last-updated timestamp. Empty request returns the top coins by market cap. For trading agents, portfolio valuation, price lookups, crypto research and market monitoring.
8000 (raw units)
price
10
calls / 30d
4
unique payers
2026-08-29
updated
Provider
agent-commerce-factory-jm.austriaeast.cloudapp.azure.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xCe339395d7f2ea5a5009022EF1C392Fb208a989E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "8000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"coins": [
"bitcoin",
"ethereum",
"solana"
],
"limit": 10,
"vsCurrency": "usd"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"count": 1,
"items": [
{
"change24hPct": 1.42,
"high24h": 64000,
"id": "bitcoin",
"imageUrl": "https://assets.coingecko.com/coins/images/1/large/bitcoin.png",
"lastUpdated": "2026-08-23T12:00:00.000Z",
"low24h": 62000,
"marketCap": 1250000000000,
"marketCapRank": 1,
"name": "Bitcoin",
"price": 63500.12,
"symbol": "BTC",
"volume24h": 23000000000
}
],
"machine": "portfolio",
"route": "crypto.prices"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"coins": {
"description": "CoinGecko ids or common tickers (e.g. btc, eth). Empty = top coins by market cap.",
"items": {
"maxLength": 50,
"minLength": 1,
"type": "string"
},
"maxItems": 50,
"type": "array"
},
"limit": {
"default": 10,
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"vsCurrency": {
"default": "usd",
"type": "string"
}
},
"required": [],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"count": {
"type": "integer"
},
"economics": {
"properties": {
"sellPriceUsd": {
"type": "number"
},
"upstreamCostUsdActual": {
"type": [
"number",
"null"
]
}
},
"type": "object"
},
"items": {
"items": {
"properties": {
"change24hPct": {
"type": [
"number",
"null"
]
},
"high24h": {
"type": [
"number",
"null"
]
},
"id": {
"type": [
"string",
"null"
]
},
"imageUrl": {
"type": [
"string",
"null"
]
},
"lastUpdated": {
"type": [
"string",
"null"
]
},
"low24h": {
"type": [
"number",
"null"
]
},
"marketCap": {
"type": [
"number",
"null"
]
},
"marketCapRank": {
"type": [
"integer",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"price": {
"type": [
"number",
"null"
]
},
"symbol": {
"type": [
"string",
"null"
]
},
"volume24h": {
"type": [
"number",
"null"
]
}
},
"type": "object"
},
"type": "array"
},
"machine": {
"type": "string"
},
"route": {
"type": "string"
}
},
"required": [
"machine",
"route",
"items"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/prices" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/prices");
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://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/prices")
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/7421.json, and this resource appears in /discovery/resources and /discovery/search.