> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chicago.global/llms.txt
> Use this file to discover all available pages before exploring further.

# Daily Price

> Get historical daily OHLCV price data for a stock.

Get historical daily OHLCV price data for a stock.

## Query Parameters

| Parameter    | Type   | Required | Description                                                        |
| ------------ | ------ | -------- | ------------------------------------------------------------------ |
| `symbol`     | string | Yes      | Stock symbol (e.g., `AAPL`, `MSFT`). Comma-separated for multiple. |
| `start_date` | string | No       | Start date (YYYY-MM-DD). Defaults to 1 year ago.                   |
| `end_date`   | string | No       | End date (YYYY-MM-DD). Defaults to latest available.               |

## Response

Returns an array of daily price records:

```json theme={null}
[
  {
    "ric": "AAPL.O",
    "date": "2025-12-01",
    "open": 278.01,
    "high": 283.42,
    "low": 276.14,
    "close": 283.10,
    "volume": 46587723,
    "changepercent": 1.52
  },
  {
    "ric": "AAPL.O",
    "date": "2025-12-02",
    "open": 283.00,
    "high": 287.40,
    "low": 282.63,
    "close": 286.19,
    "volume": 53669532,
    "changepercent": 1.09
  }
]
```

## Key Fields

| Field                             | Description                                 |
| --------------------------------- | ------------------------------------------- |
| `ric`                             | Resolved RIC                                |
| `date`                            | Trading date                                |
| `open` / `high` / `low` / `close` | OHLC prices in the stock's trading currency |
| `volume`                          | Daily trading volume                        |
| `changepercent`                   | Percentage price change from previous close |

## Example

```bash theme={null}
curl "https://api.chicago.global/v1/daily-price?symbol=AAPL&start_date=2025-12-01&end_date=2025-12-31" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml GET /v1/daily-price
openapi: 3.1.0
info:
  title: Parallax API
  description: >-
    Financial data and portfolio analytics API. Analyze portfolios with
    multi-currency support, rebalancing, and comprehensive metrics.
  version: 1.0.0
servers:
  - url: https://api.chicago.global
security:
  - bearerAuth: []
paths:
  /v1/daily-price:
    get:
      tags:
        - Price
      summary: Daily Price
      description: Get historical daily OHLCV price data for a stock.
      operationId: getDailyPrice
      parameters:
        - name: symbol
          in: query
          required: true
          description: Stock symbol (e.g., AAPL, MSFT). Comma-separated for multiple.
          schema:
            type: string
          example: AAPL
        - name: start_date
          in: query
          required: false
          description: Start date (YYYY-MM-DD). Defaults to 1 year ago.
          schema:
            type: string
            format: date
          example: '2025-01-01'
        - name: end_date
          in: query
          required: false
          description: End date (YYYY-MM-DD). Defaults to latest available.
          schema:
            type: string
            format: date
          example: '2025-12-31'
      responses:
        '200':
          description: Daily price data retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DailyPriceRecord'
              example:
                - ric: AAPL.O
                  date: '2025-12-01'
                  open: 278.01
                  high: 283.42
                  low: 276.14
                  close: 283.1
                  volume: 46587723
                  changepercent: 1.52
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DailyPriceRecord:
      type: object
      properties:
        ric:
          type: string
          description: Resolved RIC
        date:
          type: string
          format: date
          description: Trading date
        open:
          type: number
          description: Opening price
        high:
          type: number
          description: Day high price
        low:
          type: number
          description: Day low price
        close:
          type: number
          description: Closing price
        volume:
          type: integer
          description: Daily trading volume
        changepercent:
          type: number
          description: Percentage price change from previous close
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key passed as Bearer token

````