For the complete documentation index, see llms.txt. This page is also available as Markdown.

Current Price

Get current price returns the real-time price of a crypto pair.

Get Current Price

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

Returns an object with the real-time price of a crypto pair.

Path Parameters

Name
Type
Description

exchange*

sring

Unique exchange identifier used by Abyiss.

market*

string

Unique Crypto Pair identifier used by the exchange.

Query Parameters

Name
Type
Description

apiKey*

string

Your Abyiss API Key

{
    "exchange": "coinbasepro",
    "market": "BTC/USD",
    "timestamp": "1644510051396",
    "price": 45202.18
}
{
    "Unauthorized": "Invaild API Key"
}

Copy & Paste Code

curl -H "apiKey: API KEY" https://api.abyiss.com/v1/coinbasepro/BTC-USD/currentprice
import urllib.request
url = "https://api.abyiss.com/v1/coinbasepro/BTC-USD/currentprice?apiKey=*"
print(urllib.request.urlopen(url).read())
fetch("https://api.abyiss.com/v1/coinbasepro/BTC-USD/currentprice?apiKey=*")
  .then(response => response.json())
  .then(data => console.log(data))
require('axios')
  .get("https://api.abyiss.com/v1/coinbasepro/BTC-USD/currentprice?apiKey=*")
  .then(response => console.log(response))
require 'net/http'
uri = URI("https://api.abyiss.com/v1/coinbasepro/BTC-USD/currentprice?apiKey=*")
puts Net::HTTP.get(uri)

Response Object

Example URL: https://api.abyiss.com/v1/coinbasepro/BTC-USD/currentprice?apiKey=

Response Attributes

Attribute Name
Data Type
Description

exchange

string

Unique identifier used by Abyiss for the exchange.

market

string

Unique identifier used by the exchange for ticker.

timestamp

string

Unix timestamp of the current price.

price

float

The latest price of the crypto asset.

Last updated