Free market overview - total chains, TVL, and top 5 (LIVE DATA)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://profound-healing-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Detailed TVL and metrics for a specific chain
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chain": {
"type": "string",
"minLength": 1,
"description": "Chain name (e.g., \"Ethereum\", \"Base\", \"Arbitrum\")"
}
},
"required": [
"chain"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://profound-healing-production.up.railway.app/entrypoints/chain-details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chain": "<Chain name (e.g., \"Ethereum\", \"Base\", \"Arbitrum\")>"
}
}
'
Top chains by TVL with filtering options
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
},
"minTvl": {
"default": 0,
"description": "Minimum TVL in USD",
"type": "number"
},
"category": {
"default": "all",
"type": "string",
"enum": [
"all",
"l2",
"l1",
"alt-l1"
]
}
},
"required": [
"limit",
"minTvl",
"category"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://profound-healing-production.up.railway.app/entrypoints/top-chains/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1,
"minTvl": 0,
"category": "all"
}
}
'
Stablecoin distribution across chains
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://profound-healing-production.up.railway.app/entrypoints/stablecoin-flows/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Cross-chain bridge volumes and rankings
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 20
},
"period": {
"default": "24h",
"type": "string",
"enum": [
"24h",
"7d",
"30d"
]
}
},
"required": [
"limit",
"period"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://profound-healing-production.up.railway.app/entrypoints/bridge-volume/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1,
"period": "24h"
}
}
'
Compare multiple chains side-by-side
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chains": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "string"
},
"description": "Chain names to compare"
}
},
"required": [
"chains"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://profound-healing-production.up.railway.app/entrypoints/chain-compare/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chains": [
"string"
]
}
}
'