discover_market_candidates
Search indexed Robinhood pairs and public profile/boost feeds. Rankings apply only to sampled candidates; paid boosts are advertisements, not endorsements.
Discover sampled market candidates
Search indexed Robinhood pairs and public profile/boost feeds. Rankings apply only to sampled candidates; paid boosts are advertisements, not endorsements.
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/discover_market_candidates
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": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 80
},
"includeMajorAssets": {
"default": false,
"type": "boolean"
},
"sortBy": {
"default": "volume24h",
"type": "string",
"enum": [
"volume24h",
"liquidity",
"priceChange24h"
]
},
"direction": {
"default": "desc",
"type": "string",
"enum": [
"asc",
"desc"
]
},
"minLiquidityUsd": {
"default": 0,
"type": "number",
"minimum": 0,
"maximum": 1000000000000000
},
"minVolume24hUsd": {
"default": 0,
"type": "number",
"minimum": 0,
"maximum": 1000000000000000
},
"limit": {
"default": 15,
"type": "integer",
"minimum": 1,
"maximum": 30
}
},
"required": [
"includeMajorAssets",
"sortBy",
"direction",
"minLiquidityUsd",
"minVolume24hUsd",
"limit"
],
"additionalProperties": false
}