search_builder_knowledge
Retrieve focused public-derived Robinhood context with source URLs, evidence levels and review versions.
Search builder knowledge
Retrieve focused public-derived Robinhood context with source URLs, evidence levels and review versions.
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_builder_knowledge
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": 2,
"maxLength": 500
},
"limit": {
"default": 5,
"type": "integer",
"minimum": 1,
"maximum": 8
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}