Free market overview - BTC/ETH prices and global stats. Try before you buy!
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get current price for a specific coin by ID (e.g., bitcoin, ethereum, solana)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"coinId": {
"type": "string",
"description": "CoinGecko coin ID (e.g., bitcoin, ethereum, solana)"
},
"currency": {
"default": "usd",
"description": "Target currency (usd, eur, btc)",
"type": "string"
}
},
"required": [
"coinId",
"currency"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/price/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"coinId": "<CoinGecko coin ID (e.g., bitcoin, ethereum, solana)>",
"currency": "<Target currency (usd, eur, btc)>"
}
}
'
Get prices for multiple coins in one call (up to 10)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"coinIds": {
"minItems": 1,
"maxItems": 10,
"type": "array",
"items": {
"type": "string"
},
"description": "Array of CoinGecko coin IDs"
},
"currency": {
"default": "usd",
"type": "string"
}
},
"required": [
"coinIds",
"currency"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/prices/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"coinIds": [
"string"
],
"currency": "string"
}
}
'
Get top N cryptocurrencies ranked by market cap
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Number of coins to return (max 50)",
"type": "number",
"minimum": 1,
"maximum": 50
},
"currency": {
"default": "usd",
"type": "string"
}
},
"required": [
"limit",
"currency"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/top-coins/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1,
"currency": "string"
}
}
'
Get Total Value Locked (TVL) data from DeFiLlama for top chains
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Number of chains to return",
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/defi-tvl/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Full market report: top coins, DeFi TVL, and global stats combined
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topCoinsLimit": {
"default": 10,
"type": "number"
},
"topChainsLimit": {
"default": 5,
"type": "number"
}
},
"required": [
"topCoinsLimit",
"topChainsLimit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/market-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topCoinsLimit": 0,
"topChainsLimit": 0
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://crypto-price-agent-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'