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

Exchanges Count

Get exchanges count returns the number of crypto exchanges Abyiss supports.

Get Exchange Count

GET https://api.abyiss.com/v2/cex/exchanges/count

Returns the number of crypto exchanges Abyiss supports.

Query Parameters

Name
Type
Description

apiKey*

string

Your Abyiss API Key

{
    "count": 118
}
{
    "Unauthorized": "Invaild API Key"
}

Copy & Paste Code

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

Response Object

Example URL: https://api.abyiss.com/v2/cex/exchanges/count?apiKey=

{
    "count": 118
}

Response Attributes

Attribute Name
Data Type
Description

count

integer

The number of Crypto Exchanges Abyiss supports

Last updated