/v2/offexchange/{symbol}/composition Off-exchange volume by trade category for one symbol
offexchange_getComposition
One stock's off-exchange volume split by trade-condition category (for example regular_way, average_price), per session. Use it to see what kind of trading makes up the off-exchange total.
Path parameters
symbolstring requiredStock symbol, e.g.
SPY
Query parameters
fromstring epoch msFirst session of the range, inclusive: epoch-ms,
YYYY-MM-DDorYYYY-MM-DDTHH:MM[:SS]. Withoutfromandto, the latest session.tostringLast session of the range, inclusive: same forms as
from.tzstringIANA timezone for string time inputs (default
America/New_York).limitintegerRows per page: default 500, at most 5,000 (a larger value is clamped).
cursorstringOpaque continuation cursor from a previous response's
meta.cursor.
Details
Categories are ITMatrixHQ's own grouping; raw condition codes are never returned. The categories of one session reconcile to that session's activity total.
Rows below the disclosure threshold (fewer than three executions) are omitted, never zero-filled; meta.suppressed_count says how many. meta.synthetic: true marks these as ITMatrixHQ's own aggregates of off-exchange (TRF) activity, not a redistributed trade feed: no individual print, print id, timestamp or raw condition code is ever returned. Pages continue through the opaque meta.cursor.
Units
volumeis shares;notionalis dollars.share_of_off_exch_notionalis a fraction of the session's off-exchange notional (0.013= 1.3%).
Freshness
End-of-day data: a session appears the morning after it trades. meta.session, meta.latest_session, meta.as_of and meta.history_sessions say which trading date is shown.
Limits
At most 5,000 rows per page (default 500).
Empty results
A symbol or range with no data is 200 with empty data and a meta.note; empty is never a denial.
Example
GET /v2/offexchange/SPY/composition?limit=2{
"data": [
{
"date": "2026-09-25",
"category": "average_price",
"volume": 207183.0,
"notional": 159574635.96,
"trade_count": 2517,
"share_of_off_exch_notional": 0.013
},
{
"date": "2026-09-25",
"category": "derivatively_priced",
"volume": 54243.33,
"notional": 41776749.68,
"trade_count": 8335,
"share_of_off_exch_notional": 0.0034
}
],
"meta": {
"symbol": "SPY",
"synthetic": true,
"suppressed_count": 0,
"session": "2026-09-25",
"count": 2
}
}Response
Prices are dollars, timestamps epoch milliseconds, strikes integer thousandths of a dollar; null means unknown. Units →
200application/jsonapplication/x-protobuf
Typed synthetic aggregates as JSON, or OffExchangeCompositionResponse protobuf
object
A successful response: the payload consumers parse plus response metadata. data shapes are the platform types — never reshaped by the envelope.
data array<object> required
category string required date string required notional number · double required share_of_off_exch_notional number · double required trade_count integer · int64 required volume number · double required meta object required
Response metadata.
caps object nullable
meta.caps — the entitlement caps that shaped this response. applied lists the caps that actually changed it (for example range_clamped).
applied array<string> required Which caps actually shaped this response (e.g. range_clamped). Empty = nothing was clamped.
darkpool boolean nullable Whether this account can use Off-Exchange in the site.
flow boolean nullable Whether the OPRA option-flow capability (flow) is granted to this principal in the app: site Pro plus a CBOE non-professional attestation (never on an itm_ key). Emitted explicitly — true and false — by the account endpoints, so the app reads the grant instead of inferring it from tier and attestation; absent on routes that do not report it.
gexDepth string nullable GEX data depth when the route reports it. Camel-cased to match the browser capability bundle; absent on unrelated routes.
tier string required The tier the request was served under.
cursor string nullable Opaque continuation cursor (pass back as ?cursor=); absent when there is nothing more to read.
plane string nullable Which serving tier answered the read (meta.plane). Informational provenance: treat it as an opaque label, because new values may appear.
Send Accept: application/x-protobuf for a protobuf body instead of JSON — see Protobuf. Errors stay JSON.
Errors
Every error is the JSON error envelope; branch on error.code.
| Status | Meaning |
|---|---|
| 400 | |
| 401 | |
| 403 | API tier or non-professional attestation required |