Exchange Status
Get exchange status returns the current status of a crypto exchange.
Get Exchange Status
Path Parameters
Name
Type
Description
Query Parameters
Name
Type
Description
{
"status":"ok",
"updated":1634929487916
}Copy & Paste Code
curl -H "apiKey: API KEY" https://api.abyiss.com/v2/cex/coinbasepro/statusfrom Abyiss import Abyiss
apiKey = "YOUR API KEY"
client = Abyiss.Client(apiKey)
exchangeStatus = client.getExchangeStatus("coinbasepro")
print(exchangeStatus)fetch("https://api.abyiss.com/v2/cex/coinbasepro/status?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))require('axios')
.get("https://api.abyiss.com/v2/cex/coinbasepro/status?apiKey=*")
.then(response => console.log(response))require 'net/http'
uri = URI("https://api.abyiss.com/v2/cex/coinbasepro/status?apiKey=*")
puts Net::HTTP.get(uri)Response Object
Response Attribute
Attribute Name
Data Type
Description
Last updated