v1

latestOpenAPI 3.1.02026-07-2268276396.6 KB
Market Data

Aftermarket Prices

Returns the latest extended-hours (aftermarket) trade and quote for one or more companies. Each record includes the last aftermarket trade (price, size, timestamp) and quote (best bid/ask price and size, cumulative volume, timestamp).

post/v1/price/aftermarket/query

Request body

Response

Successful Response

Example response

{
  "results": [
    {
      "rp_entity_id": "4A6F00",
      "target_identifier_id": "GOOGL",
      "trade": {
        "price": 245.79,
        "trade_size": 100,
        "timestamp": "2025-09-25T23:59:00"
      },
      "quote": {
        "bid_price": 245.5,
        "bid_size": 200,
        "ask_price": 245.9,
        "ask_size": 150,
        "volume": 1250000,
        "timestamp": "2025-09-25T23:59:00"
      }
    }
  ]
}