# run_trench_radar

Discover market candidates without waiting for user token names, incorporate recent supplied FOMO and approved exact-token social evidence. No paid calls started.

## Scan Robinhood confluence

Discover market candidates without waiting for user token names, incorporate recent supplied FOMO and approved exact-token social evidence. No paid calls started.



## 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/run_trench_radar
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/json
```

## Input 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": {
    "minLiquidityUsd": {
      "default": 25000,
      "type": "number",
      "minimum": 0
    },
    "minVolume1hUsd": {
      "default": 10000,
      "type": "number",
      "minimum": 0
    },
    "minPriceChange1hPercent": {
      "default": 5,
      "type": "number"
    },
    "minMarketCapUsd": {
      "default": 1000000,
      "type": "number",
      "minimum": 0
    },
    "maxMarketCapUsd": {
      "default": 10000000,
      "type": "number",
      "exclusiveMinimum": 0
    },
    "limit": {
      "default": 6,
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    }
  },
  "required": [
    "minLiquidityUsd",
    "minVolume1hUsd",
    "minPriceChange1hPercent",
    "minMarketCapUsd",
    "maxMarketCapUsd",
    "limit"
  ],
  "additionalProperties": false
}
```

## Continue building

Use the MCP tools/list response or /openapi.json for machine-readable discovery. For workflows and evidence boundaries, follow the appropriate guide.



[REST API](/docs/api) · [Builder quickstart](/docs/builders) · [Research workflow](/docs/trading-assistant)