Free derivatives market overview - total volume and top 5 protocols (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://defi-yield-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Deep dive on a specific derivatives protocol
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"minLength": 1,
"description": "Protocol name (e.g., \"Hyperliquid\", \"GMX\", \"dYdX\")"
}
},
"required": [
"protocol"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-yield-agent-production.up.railway.app/entrypoints/protocol-details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"protocol": "<Protocol name (e.g., \"Hyperliquid\", \"GMX\", \"dYdX\")>"
}
}
'
Top derivatives protocols ranked by volume
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
},
"chain": {
"description": "Filter by chain (e.g., \"Arbitrum\", \"Solana\")",
"type": "string"
},
"period": {
"default": "24h",
"type": "string",
"enum": [
"24h",
"7d",
"30d"
]
}
},
"required": [
"limit",
"period"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-yield-agent-production.up.railway.app/entrypoints/top-protocols/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1,
"period": "24h"
}
}
'
Derivatives activity breakdown by blockchain
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 15,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-yield-agent-production.up.railway.app/entrypoints/chain-analysis/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Market trends and momentum analysis
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-yield-agent-production.up.railway.app/entrypoints/volume-trends/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Compare multiple derivatives protocols side-by-side
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"protocols": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "string"
},
"description": "Protocol names to compare"
}
},
"required": [
"protocols"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://defi-yield-agent-production.up.railway.app/entrypoints/compare-protocols/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"protocols": [
"string"
]
}
}
'