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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/prices
| Category | Market data |
|---|---|
| Provider host | agent-commerce-factory-jm.austriaeast.cloudapp.azure.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.008 | 911 ms |
Example input (from the provider)
{
"body": {
"coins": [
"bitcoin",
"ethereum",
"solana"
],
"limit": 10,
"vsCurrency": "usd"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}