# search_robinhood_research

Retrieve a small relevant excerpt from Ultron’s private curated research. Historical context only; no bulk export or current-price claims.

## Consult Ultron research

Retrieve a small relevant excerpt from Ultron’s private curated research. Historical context only; no bulk export or current-price claims.



## 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/search_robinhood_research
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": {
    "query": {
      "type": "string",
      "minLength": 2,
      "maxLength": 180
    },
    "audience": {
      "default": "both",
      "type": "string",
      "enum": [
        "trader",
        "builder",
        "both"
      ]
    },
    "limit": {
      "default": 3,
      "type": "integer",
      "minimum": 1,
      "maximum": 5
    },
    "includeOtherChains": {
      "default": false,
      "type": "boolean"
    }
  },
  "required": [
    "query",
    "audience",
    "limit",
    "includeOtherChains"
  ],
  "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)