Security List
security_listRetrieve a paginated list of securities for a specified market (US, HK, CN, SG). Optionally filter by category (e.g., Overnight) and control page size.
Instructions
Get security list for a market. Supports market: US, HK, CN, SG. category: "Overnight" (default). page: 1-based page number (default 1). count: records per page (default 50). Returns {total, page, count, items[]{symbol, name_en, name_cn}}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| market | Yes | Market code: US, HK, CN, SG | |
| category | No | Category filter. Currently only "Overnight" is supported; omitting defaults to Overnight. | |
| page | No | Page number, 1-based (default: 1) | |
| count | No | Records per page (default: 50) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | Yes | Total number of securities available for this market/category (before pagination). | |
| page | Yes | 1-based page number echoed back from the request. | |
| count | Yes | Records-per-page echoed back from the request. | |
| items | Yes | The securities on this page. |