intelligence-report
InvokeStandard intelligence report — fast analysis using core DeFi and market data endpoints. Returns a markdown report synthesized from multiple x402 data sources.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The intelligence query, e.g. 'Should I invest in $AERO on Base?'"
}
},
"required": [
"query"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"report": {
"type": "string",
"description": "Markdown-formatted intelligence report"
},
"costUsd": {
"type": "number",
"description": "Total pipeline cost in USD"
},
"endpointsCalled": {
"type": "number",
"description": "Number of x402 endpoints called"
},
"endpointsSucceeded": {
"type": "number",
"description": "Number of successful endpoint calls"
}
},
"required": [
"report",
"costUsd",
"endpointsCalled",
"endpointsSucceeded"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://parallax-agent-production.up.railway.app/entrypoints/intelligence-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<The intelligence query, e.g. 'Should I invest in $AERO on Base?'>"
}
}
'