Get Asset Statuses
This endpoint retrieves information about individual asset trading statuses, including the reason and expected duration. Asset trading can be affected for various reasons such as earnings announcements, dividend events, and global market closures.
Important:
- When the entire market is closed or paused as indicated by
/v1/status/market, all asset trading is automatically suspended regardless of individual asset status. (See Get Current Market Status) - Certain assets do not trade during the overnight and pre/postmarket session, as indicated by
/v1/assets/{symbol}/market. (See Get Market Data for an Asset / Get Market Data for All Supported Assets)
This endpoint should be used in conjunction with the Market Status and Market Data endpoints to get a complete picture of trading availability.
Market Sessions and Holidays
Asset trading follows the same schedule as outlined in the /v1/status/market endpoint. During market closures, holidays, or unscheduled downtime, all assets are unavailable for trading.
Earnings and Dividends
Individual assets may be temporarily suspended or limited during earnings announcements and dividend events according to the following schedule:
- Dividends: Trading is paused from 7:50 PM to 8:10 PM ET on the day before the dividend ex-date.
- Earnings: Trading is limited for certain assets around earnings announcements, with timing dependent on the announcement schedule. “Limited” here means that the quantity which can be minted in one request is reduced. For exact limits, see Get Trading Limits. For pre-market announcements, trading is suspended from 5:00 AM to 9:31 AM ET. For post-market announcements, trading is suspended from 4:00 PM to 7:30 PM ET. Trading may resume earlier at the platform’s discretion.
- Other corporate actions: Trading is paused for an indeterminate amount of time as needed for Ondo to process the corporate action.
Asset Status Reason Codes
reason.code is one of:
ASSET_PAUSED: Asset is paused for trading.ASSET_LIMITED: Asset can be traded, but order size is more limited than usual.
Asset Status Reason Messages
reason.message is one of:
cash_dividendstock_dividendstock_splitmergeracquisitionspinoffearningsmaintenance
For caching details on this endpoint, please see: Endpoint Caching.
Authorizations
Response
OK
The GM token symbol.
"AAPLon"
The current status of the pause. ('active' indicates the pause is live, 'upcoming' indicates it is scheduled for the future)
active, upcoming "active"
The type of pause. ('scheduled' indicates a planned pause for events such as dividends, 'unscheduled' indicates an unplanned pause such as emergency maintenance)
scheduled, unscheduled "unscheduled"
Reason for an asset trading restriction.
{
"code": "ASSET_PAUSED",
"message": "Maintenance",
"documentation": "https://docs.ondo.finance/"
}The start time of the pause. ('unscheduled' pauses may not provide a start time.)
"2025-08-05T10:30:00Z"
The end time of the pause. ('unscheduled' pauses may not provide an end time.)
"2025-08-05T10:45:00Z"
The unique id associated with the pause. (Might be empty if the sharesMultiplier will not be updated for the asset during the pause.)
"94fe2f8f-e69c-45a5-9e48-dd8226dd8e67"
A boolean flag that indicates whether the sharesMultiplier value will be updated for the asset during this pause or not.
true, false true

