Exchange Status
Get exchange status returns the current status of a crypto exchange.
Get Exchange Status
GEThttps://api.adesic.com/v2/cex/{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 Adesic. |
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
response.json
{
"status":"ok",
"updated":1634929487916
}Copy & Paste Code
cURL
curl
curl -H "api-key: API KEY" https://api.adesic.com/v2/cex/coinbasepro/statusResponse Object
Example URL: https://api.adesic.com/v2/cex/coinbasepro/status
response.json
{
"status":"ok",
"updated":1634929487916
}Response Attributes
| 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. |