Free overview of DeFi ecosystem - top chains by TVL
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
All blockchain chains ranked by Total Value Locked
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 25,
"type": "number",
"minimum": 1,
"maximum": 100
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-agent-production.up.railway.app/entrypoints/chains/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
DEX volume overview across all chains
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-agent-production.up.railway.app/entrypoints/dexes/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Top DeFi protocols ranked by Total Value Locked
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://defi-agent-production.up.railway.app/entrypoints/protocols/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Detailed TVL and protocol breakdown for a specific blockchain
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chain": {
"type": "string",
"minLength": 1
}
},
"required": [
"chain"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-agent-production.up.railway.app/entrypoints/chain/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chain": "string"
}
}
'
Comprehensive DeFi market report with chains, protocols, and DEX 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://defi-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'