v1

latestOpenAPI 3.0.02026-07-266091181.5 KB
Block Trade

BlockTrade V1

Returns block trade data, which includes unusually large trades that may indicate institutional trading activity

get/api/v1/signal/block_trade

Query parameters

pageinteger

Page offset. For optimization, performance and technical reasons, page offsets are limited from 0 - 100000. Limit the query results by other parameters such as date. Default is 0

pageSizeinteger

Number of results returned. Limit 1000

date_fromstring date

Start date in YYYY-MM-DD format

date_tostring date

End date in YYYY-MM-DD format

tickersstring csv

One or more ticker symbols separated by a comma. Maximum 50 tickers

updatedinteger

Records last Updated Unix timestamp (UTC). This will force the sort order to be Greater Than or Equal to the timestamp indicated

Response

Block Trade

Example response

{
  "block-trade": [
    {
      "ask": "185.44",
      "bid": "185.40",
      "count": 1,
      "date": "2024-01-09",
      "description": "Large institutional trade",
      "exchange": "NASDAQ",
      "executing_exchange": "Q",
      "id": "60a7f5e8e4b0f5a3c8e9f5b4",
      "importance": 4,
      "isin": "US0378331005",
      "name": "Apple Inc.",
      "price": "185.42",
      "sale_conditions": "@",
      "size": "500000",
      "ticker": "AAPL",
      "time": "15:45:30",
      "updated": 1704819600
    }
  ]
}