---
title: "Return the history of stock prices"
method: GET
path: "/v1/stock"
tags: ["stock"]
---

# Return the history of stock prices

`GET /v1/stock`

## Query parameters

- `symbol` string
- `type` string
- `from` string, date
- `limit` integer

## Response `200`

successful operation

- ResultsStockPrice
  - `data` StockPrice[], required
    - `id` string, required — globally unique id
    - `orgId` string — org id that this stock price derives from
    - `stock` string, required — ticker symbol of this stock
    - `date` string, date, required — date
    - `price` number, required — price per share
    - `type` 'COMMON_FMV' | 'FUNDRAISE' | 'GRANT' | 'PUBLIC', required — type of valuation
    - `total` integer — total shares outstanding
    - `updateAt` string — updated timestamp
    - `updateId` string — updated by person
    - `updateBehalfId` string — last updated on behalf of user id
    - `updateAttribution` Attribution
      - `principalUserId` string
      - `agentUserIds` string[]
      - `eventId` string
      - `aiChatId` string
      - `aiToolUseId` string
      - `channel` 'WEB' | 'MOBILE' | 'SLACK' | 'TEAMS' | 'MCP'
  - `next` string
  - `access` ResultsAccess[]
    - `ids` string[]
    - `allowed` AccessAction[], required
      - `action` string, required
      - `fields` string[]
      - `types` string[]

## Other responses

- `400` — bad request
- `401` — not authorized
- `404` — not found

---

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