list
InvokeList new AMM pairs created on specified chain within the time window
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chain": {
"description": "Target blockchain (ethereum, polygon, arbitrum, optimism, base, bsc, etc.)",
"type": "string"
},
"factories": {
"description": "Array of AMM factory contract addresses to monitor, sepererate by ,",
"type": "string"
},
"window_minutes": {
"description": "Time window to scan in minutes (default: 60, max: 1440)",
"type": "string",
"minLength": 1,
"maxLength": 2
},
"rpc_url": {
"description": "Optional custom RPC URL. If not provided, uses default for the chain",
"type": "string"
}
},
"required": [
"chain",
"factories",
"window_minutes"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'http://fresh-market-watch-production.up.railway.app/entrypoints/list/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"chain": "<Target blockchain (ethereum, polygon, arbitrum, optimism, base, bsc, etc.)>",
"factories": "<Array of AMM factory contract addresses to monitor, sepererate by ,>",
"window_minutes": "<Time window to scan in minutes (default: 60, max: 1440)>"
}
}
'