Skip to main content

API Status
New

Check the current status of Market Data services and historical uptime. The status of the Market Data API is updated every 5 minutes. Historical uptime is available for the last 30 and 90 days.

tip

This endpoint will continue to respond with the current status of the Market Data API, even if the API is offline. This endpoint is public and does not require a token.

Endpoint

https://api.marketdata.app/status/

Method

GET

Request Example

Response Example

{
"s": "ok",
"service": ["Customer Dashboard", "Historical Data API", "Real-time Data API", "Website"],
"status": ["online", "online", "online", "online"],
"online": [true, true, true, true],
"uptimePct30d": [1, 0.99769, 0.99804, 1],
"uptimePct90d": [1, 0.99866, 0.99919, 1],
"updated": [1708972840, 1708972840, 1708972840, 1708972840]
}

Response Attributes

  • s string

    Will always be ok when the status information is successfully retrieved.

  • service array[string]

    The list of services being monitored.

  • status array[string]

    The current status of each service (online or offline).

  • online array[boolean]

    Boolean indicators for the online status of each service.

  • uptimePct30d array[number]

    The uptime percentage of each service over the last 30 days.

  • uptimePct90d array[number]

    The uptime percentage of each service over the last 90 days.

  • updated array[date]

    The timestamp of the last update for each service's status.

For more details on the API's status, visit the Market Data API Status Page.