Exchange Status

Get exchange status returns the current status of a crypto exchange.

Get Exchange Status

GET https://api.abyiss.com/v1/{exchange}/status

Returns an object with properties that describe an exchange's status.

Path Parameters

Name
Type
Description

exchange*

string

Unique exchange identifier used by Abyiss.

Query Parameters

Name
Type
Description

apiKey

string

Your Abyiss API Key

{
    "status":"ok",
    "updated":1634929487916
}

Copy & Paste Code

curl -H "apiKey: API KEY" https://api.abyiss.com/v1/coinbasepro/status

Response Object

Example URL: https://api.abyiss.com/v1/coinbasepro/status?apiKey=

{
    "status":"ok",
    "updated":1634929487916
}

Response Attribute

Attribute Name
Data Type
Description

status

string

Status of the exchange. 'ok' is good.

updated

integer

Unix timestamp of the last time the exchange status was updated.

Last updated