check_price_moves
Batch-check exact token addresses for up, down or either-direction percentage moves. Return only matching coins plus explicit missing coverage. A read is not an alert.
Check the listed coins for a 1h move
Batch-check exact token addresses for up, down or either-direction percentage moves. Return only matching coins plus explicit missing coverage. A read is not an alert.
Permission and calling convention
Required scope: chain:read. This tool reads data or account-owned state.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/check_price_moves
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tokens": {
"minItems": 1,
"maxItems": 20,
"type": "array",
"items": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
}
},
"thresholdPercent": {
"default": 30,
"type": "number",
"exclusiveMinimum": 0,
"maximum": 1000000
},
"direction": {
"default": "either",
"type": "string",
"enum": [
"up",
"down",
"either"
]
}
},
"required": [
"tokens",
"thresholdPercent",
"direction"
],
"additionalProperties": false
}