Free overview of DeFi ecosystem - top 5 chains by TVL, total protocol count
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://believable-presence-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get TVL and details for a specific blockchain
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chain": {
"type": "string",
"description": "Chain name (e.g., \"ethereum\", \"arbitrum\", \"base\")"
}
},
"required": [
"chain"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://believable-presence-production.up.railway.app/entrypoints/chain-tvl/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chain": "<Chain name (e.g., \"ethereum\", \"arbitrum\", \"base\")>"
}
}
'
Look up a specific DeFi protocol by name or slug
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"description": "Protocol name or slug (e.g., \"uniswap\", \"aave\", \"lido\")"
}
},
"required": [
"protocol"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://believable-presence-production.up.railway.app/entrypoints/protocol-lookup/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"protocol": "<Protocol name or slug (e.g., \"uniswap\", \"aave\", \"lido\")>"
}
}
'
Get top DeFi protocols by TVL with optional chain filter
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 50
},
"chain": {
"description": "Filter by chain (e.g., \"Ethereum\", \"Arbitrum\")",
"type": "string"
},
"category": {
"description": "Filter by category (e.g., \"DEX\", \"Lending\", \"Bridge\")",
"type": "string"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://believable-presence-production.up.railway.app/entrypoints/top-protocols/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Get token price by chain and contract address
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chain": {
"type": "string",
"description": "Chain name (e.g., \"ethereum\", \"arbitrum\", \"base\")"
},
"address": {
"type": "string",
"description": "Token contract address"
}
},
"required": [
"chain",
"address"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://believable-presence-production.up.railway.app/entrypoints/token-price/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chain": "<Chain name (e.g., \"ethereum\", \"arbitrum\", \"base\")>",
"address": "<Token contract address>"
}
}
'
Get stablecoin supply and peg data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 50
},
"symbol": {
"description": "Filter by symbol (e.g., \"USDT\", \"USDC\")",
"type": "string"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://believable-presence-production.up.railway.app/entrypoints/stablecoin-stats/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
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://believable-presence-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://believable-presence-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://believable-presence-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'