search_instruments
Search instruments by ticker symbol and retrieve candidate matches with details including instrument ID, symbol, display name, and tradability status.
Instructions
Search instruments by ticker symbol and return candidate matches.
Matching is contains/prefix, NOT exact: searching 'AAPL' also returns variants such as 'AAPL.24-7' and 'AAPL.EUR'. Always verify that the candidate's internalSymbolFull exactly equals the symbol you want before using its instrumentId. Instrument ids are immutable (they survive rebrands and ticker changes), so they are safe to cache.
Returns {"totalItems": int, "results": [{"instrumentId": int, "internalSymbolFull": str, "displayName": str, "isCurrentlyTradable": bool}]}.
Rate limit: shares the market-data pool of 120 requests per 60 seconds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of candidates to return. | |
| query | Yes | Ticker symbol to search for, e.g. 'AAPL' or 'BTC'. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||