Scan trading pairs across DEXes, CEXes, and perps on one chain for arbitrage opportunities
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"pairs": {
"type": "array",
"items": {
"type": "string"
}
},
"chain": {
"default": "base",
"type": "string",
"enum": [
"base",
"ethereum",
"arbitrum",
"solana",
"starknet",
"bnb",
"hyperliquid"
]
},
"min_profit_usd": {
"default": 25,
"type": "number"
},
"max_results": {
"default": 10,
"type": "number"
}
},
"required": [
"chain",
"min_profit_usd",
"max_results"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://arbitrage-scanner.45.132.242.18.sslip.io/entrypoints/scan-arbitrage/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chain": "base",
"min_profit_usd": 0,
"max_results": 0
}
}
'
parallel-scan-arbitrage
Invoke
Fan out scans across multiple chains/pairs for Daydreams parallel Task Market execution and aggregate best opportunities
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"pairs": {
"type": "array",
"items": {
"type": "string"
}
},
"chains": {
"type": "array",
"items": {
"type": "string",
"enum": [
"base",
"ethereum",
"arbitrum",
"solana",
"starknet",
"bnb",
"hyperliquid"
]
}
},
"min_profit_usd": {
"default": 25,
"type": "number"
},
"max_results": {
"default": 20,
"type": "number"
}
},
"required": [
"min_profit_usd",
"max_results"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://arbitrage-scanner.45.132.242.18.sslip.io/entrypoints/parallel-scan-arbitrage/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"min_profit_usd": 0,
"max_results": 0
}
}
'
daydreams-parallel-plan
Invoke
Return a Daydreams Task Market v2 parallel task decomposition plan for chain/pair fanout
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"pairs": {
"type": "array",
"items": {
"type": "string"
}
},
"chains": {
"type": "array",
"items": {
"type": "string",
"enum": [
"base",
"ethereum",
"arbitrum",
"solana",
"starknet",
"bnb",
"hyperliquid"
]
}
}
},
"required": [
"pairs",
"chains"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://arbitrage-scanner.45.132.242.18.sslip.io/entrypoints/daydreams-parallel-plan/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"pairs": [
"string"
],
"chains": [
"base"
]
}
}
'