List assets (screener)
Returns a columnar list of assets of the given type — the website's screener as an API. Supports field projection, sorting, and Stripe-style filtering (filter[field][gt|lt|contains|include|exclude]). Unknown field, sort, or filter column names return a 400 listing the bad names.
| Field | Type | Description |
|---|---|---|
| fields | string | Comma-separated list of field names to include in the response. Omit for default fields per type. |
| sort | string | Field name to sort by (numeric columns, e.g. 'marketCap'). Omit for the type's default ranking. |
| order | string | Sort order. Default: desc. range: asc · descdefault: desc |
| limit | integer | Maximum number of assets to return. Default 50, capped at 100. range: 1 – 100default: 50 |
| filter[<field>][gt|lt|contains|include|exclude] | string | Stripe-style filter parameters. gt/lt are inclusive bounds on numeric columns; contains is a case-insensitive substring match on text columns; include/exclude take comma-separated categorical values. Examples: filter[marketCap][gt]=1000000000, filter[sector][include]=Technology,Energy, filter[companyName][contains]=micro. Repeatable. |
| Field | Type | Description |
|---|---|---|
| data | object | Columnar dataset. Contains an `ids` array and one array per requested field, all the same length. |
| meta | object |
Sign in to try this endpoint live with your own API key.
Sign in to try it →