get_search
Search financial instruments across stocks, ETFs, and mutual funds. Get normalized price, liquidity, performance, and classification data to compare and rank assets in one response.
Instructions
Returns a unified, cross-asset search result for financial instruments, including stocks, ETFs, and mutual funds. This endpoint powers global asset search, ticker autocomplete, discovery flows, and AI-assisted search scenarios. It returns a normalized set of price, liquidity, performance, and classification fields, allowing different asset types to be ranked and compared in a single response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of matched items returned. | |
| offset | No | Pagination offset (0-based). | |
| filters | No | Optional filter expressions. Each filter condition is defined as: [field, operator, value]. Conditions can be combined using logical operators and/or. Supported operators: Numeric fields: > - greater than >= - greater than or equal < - less than <= - less than or equal = - equals <> - not equal String fields: like – pattern match (requires % as a wildcard) not_like - pattern does not match (requires % as a wildcard) contains - value exists in string not_contains - value does not exist in string startswith - string starts with value endswith - string ends with value % usage examples: %abc% - matches any string containing "abc" abc% - matches any string starting with "abc" %abc - matches any string ending with "abc" Example: "filters": [ "short_name", "contains", "Market" ] | |
| sort_by | No | Optional sorting configuration for result items. Each sorting setup is defined as [selector, desc]: selector - Metric used for sorting (e.g., date). desc - Sorting direction (true for descending, false for ascending). Sortings can be combined using ,. Example: { "selector": "date", "desc": true } | |
| quote_types | No | Controls which asset types are included in the search. | |
| search_text | No | Free-text query (e.g., “NVDA”, “NVIDIA”, partial ticker, partial name). | |
| has_public_financial_reports | No | Indicates whether the company provides public financial statements. |