Price, market cap and volume series for a coin over an ARBITRARY time window
Price, market cap and volume series for a coin over an ARBITRARY time window: `from`/`to` as unix seconds or ISO dates, or `lookback` ("6h", "3d", "2w") ending now. Granularity is automatic upstream: 5-minute points for a window of 1 day or less, hourly up to 90 days, daily beyond. The windowed sibling of crypto-history (which counts days back from now): use it to align with a specific event, a filing date or another series.
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
GET https://agent402.tools/api/coin-market-chart-range
| Category | Market data |
|---|---|
| Provider host | agent402.tools |
| Networks | algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=, eip155:10, eip155:1329, eip155:137, eip155:143, eip155:42161, eip155:42220, eip155:43114, eip155:4663, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp, stellar:pubnet |
| Payment schemes | exact, upto |
| Self-reported calls, 30 days | 5 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"coin": "ethereum",
"currency": "usd",
"lookback": "3d"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"coin": {
"description": "Coin id (bitcoin, ethereum, ...).",
"type": "string"
},
"currency": {
"description": "vs currency (default usd).",
"type": "string"
},
"from": {
"description": "Window start: unix seconds or ISO-8601 date. Default = to minus 24h.",
"type": "string"
},
"lookback": {
"description": "Alternative to from: a window ending at `to`, like \"6h\", \"3d\" or \"2w\".",
"type": "string"
},
"to": {
"description": "Window end: unix seconds or ISO-8601 date. Default = now.",
"type": "string"
}
},
"required": [
"coin"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"cached": {
"type": "boolean"
},
"coin": {
"type": "string"
},
"count": {
"type": "integer"
},
"currency": {
"type": "string"
},
"fetchedAt": {
"type": "string"
},
"from": {
"type": "string"
},
"granularity": {
"type": "string"
},
"points": {
"type": "array"
},
"source": {
"type": "string"
},
"summary": {
"type": "object"
},
"to": {
"type": "string"
}
},
"required": [
"source",
"fetchedAt",
"cached",
"coin",
"currency",
"from",
"to",
"count",
"granularity",
"summary",
"points"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}