Current Price
Get current price returns the real-time price of a crypto pair.
Get Current Price
Path Parameters
Name
Type
Description
Query Parameters
Name
Type
Description
{
"exchange": "coinbasepro",
"market": "BTC/USD",
"timestamp": "1644510051396",
"price": 45202.18
}Copy & Paste Code
curl -H "apiKey: API KEY" https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD/currentpriceimport urllib.request
url = "https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD/currentprice?apiKey=*"
print(urllib.request.urlopen(url).read())fetch("https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD/currentprice?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))require('axios')
.get("https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD/currentprice?apiKey=*")
.then(response => console.log(response))require 'net/http'
uri = URI("https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD/currentprice?apiKey=*")
puts Net::HTTP.get(uri)Response Object
Response Attributes
Attribute Name
Data Type
Description
Last updated