---
title: "Get Stocks"
method: GET
path: "/api/v2/market_data/stocks/"
tags: ["Market Data"]
---

# Get Stocks

`GET /api/v2/market_data/stocks/`

Get a list of `Stocks`.

## Query parameters

- `symbols` string[]
- `limit` integer
- `order` 'asc' | 'desc'
- `next` string, nullable
- `previous` string, nullable

## Response `200`

OK

- PaginatedStockResponse
  - `_sv` 'PaginatedStockResponse:v1' — Version
  - `data` Stock[], required — List of Stock
    - `id` string, uuid, required — ID of the `Stock`
    - `name` string, required — Company name
    - `symbol` string, required — Ticker symbol
    - `is_fractionable` boolean, required — Whether the `Stock` allows for fractional trading. If it is not fractionable, Dinari only supports limit orders for the `Stock`.
    - `is_tradable` boolean, required — Whether the `Stock` is available for trading.
    - `tokens` string[], required — List of CAIP-10 formatted token addresses.
    - `composite_figi` string, nullable — Composite FIGI ID. Refer to [this link](https://www.openfigi.com/about/figi) for more information.
    - `cusip` string, nullable — CUSIP ID. Refer to [this link](https://www.cusip.com/identifiers.html) for more information. A license agreement with CUSIP Global Services is required to receive this value.
    - `cik` string, nullable — SEC Central Index Key. Refer to [this link](https://www.sec.gov/submit-filings/filer-support-resources/how-do-i-guides/understand-utilize-edgar-ciks-passphrases-access-codes) for more information.
    - `display_name` string, nullable — Name of `Stock` for application display. If defined, this supercedes the `name` field for displaying the name.
    - `description` string, nullable — Description of the company and their services.
    - `logo_url` string, nullable — URL of the company's logo. Supported formats are SVG and PNG.
  - `pagination_metadata` BaseOpenApiPaginationMetadata, required
    - `previous` string — Cursor for previous page
    - `next` string — Cursor for next page

## Other responses

- `422` — Unprocessable Entity
- `default` — Default error response

---

[API](https://skmtc.net/dinaricrypto/apis/dinari-enterprise-api.md) · [All operations](https://skmtc.net/dinaricrypto/apis/dinari-enterprise-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dinaricrypto/dinari-enterprise-api/revisions/5403e9118588/schema)
