---
title: "Get Company Stock Prices"
method: GET
path: "/api/v2/companies/{company_id}/stock-prices"
tags: ["Market Data"]
---

# Get Company Stock Prices

`GET /api/v2/companies/{company_id}/stock-prices`

Retrieve paginated daily OHLCV (Open, High, Low, Close, Volume) stock price data for a specific company.

## Path parameters

- `company_id` integer, required

## Query parameters

- `adjusted` boolean
- `end_date` string, date, required
- `limit` integer
- `offset` integer
- `start_date` string, date, required

## Response `200`

- PaginatedMarketDataList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` MarketData[], required
    - `date` string, date, required — Trading date for the returned datapoint
    - `open` number, double, required — Opening price on the trading date (currency units)
    - `high` number, double, required — Highest price reached during the trading date
    - `low` number, double, required — Lowest price reached during the trading date
    - `close` number, double, required — Closing price on the trading date (currency units)
    - `volume` integer, required — Total traded volume for the trading date

## Other responses

- `400`
- `401`
- `429`

---

[API](https://skmtc.net/daloopa/apis/daloopa-api.md) · [All operations](https://skmtc.net/daloopa/apis/daloopa-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/daloopa/daloopa-api/revisions/746538a1eb45/schema)
