---
title: "Get Asset Statuses"
method: GET
path: "/v1/status/assets"
tags: ["Status"]
---

# Get Asset Statuses

`GET /v1/status/assets`

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](https://docs.ondo.finance/api-reference/status/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](https://docs.ondo.finance/api-reference/assets/get-market-data-for-an-asset) / [Get Market Data for All Supported Assets](https://docs.ondo.finance/api-reference/assets/get-market-data-for-all-supported-assets)) 

 This endpoint should be used in conjunction with the [Market Status](https://docs.ondo.finance/api-reference/status/get-current-market-status) and [Market Data](https://docs.ondo.finance/api-reference/assets/get-market-data-for-an-asset) endpoints to get a complete picture of trading availability.

**Market Sessions and Holidays**

Asset trading follows the same schedule as outlined in [Get Current Market Status](https://docs.ondo.finance/api-reference/status/get-current-market-status). 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](https://docs.ondo.finance/api-reference/limits/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_dividend`
- `stock_dividend`
- `stock_split`
- `merger`
- `acquisition`
- `spinoff`
- `earnings`
- `maintenance`

For caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).

## Response `200`

OK

- AssetPause[]
  - `symbol` string, required — The GM token symbol.
  - `status` 'active' | 'upcoming', required — The current status of the pause. ('active' indicates the pause is live, 'upcoming' indicates it is scheduled for the future)
  - `type` 'scheduled' | 'unscheduled', required — The type of pause. ('scheduled' indicates a planned pause for events such as dividends, 'unscheduled' indicates an unplanned pause such as emergency maintenance)
  - `reason` object — Reason for an asset trading restriction.
    - `message` string, required — The human-readable message describing the reason
    - `documentation` string, required — Additional documentation or reference
    - `code` 'ASSET_PAUSED' | 'ASSET_LIMITED', required — The code indicating the reason for the asset status.
  - `start` string — The start time of the pause. ('unscheduled' pauses may not provide a start time.)
  - `end` string — The end time of the pause. ('unscheduled' pauses may not provide an end time.)
  - `eventId` string — The unique id associated with the pause. (Might be empty if the sharesMultiplier will not be updated for the asset during the pause.)
  - `updateSharesMultiplier` true | false — A boolean flag that indicates whether the sharesMultiplier value will be updated for the asset during this pause or not.

## Other responses

- `401` — Missing or invalid API key.
- `429` — The account has exceeded its rate limits. Please see the returned message and documentation for details.
- `500` — An internal server error occurred. Please see the returned message and documentation for details.

---

[API](https://skmtc.net/ondo/apis/gm-backend-api.md) · [All operations](https://skmtc.net/ondo/apis/gm-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondo/gm-backend-api/versions/12953a4908b2/schema)
