Getting Started
Get Started With The Abyiss API
The Abyiss API allows you to connect to 100+ major cryptocurrency exchanges, while track 10,000+ assets in real-time. Let's get started!
The data that you can access through the Abyiss API differs based on your plan.
To learn more about Authentication and API Keys please reference the API Keys - Authentication section under API Architecture.
Our API Endpoints are broken up into two categories, Reference Data and Market Data. All Reference Data endpoints are free to use and access, while Market Data endpoints are only accessible to paid accounts.
To make your first request, just ping our API: https://api.abyiss.com/ping. This will return "Hello from the Abyiss". All requests return JSON-encoded responses.
get
https://api.abyiss.com
/ping
Ping Abyiss
{
"ping": "Hello from the Abyiss"
}
Take a look at how you might call our API using the following programing languages.
Feel free to copy and paste this code into your own development environment and try it for yourself.
Python
Curl
from Abyiss import Abyiss
apiKey = "YOUR API KEY""
client = Abyiss.Client(apiKey)
exchanges = client.getExchanges()
exchangeDetails = client.getExchangeDetails("coinbasepro")
exchangeStatus = client.getExchangeStatus("coinbasepro")
exchangeMarkets = client.getExchangeMarkets("coinbasepro")
exchangeMarketDetails = client.getMarketDetails("coinbasepro", "BTC-USDT")
aggregates = client.aggregates("coinbasepro", "BTC-USDT", "1h", '300')
trades = client.trades("coinbasepro", "BTC-USDT", '300')
quotes = client.quotes("coinbasepro", "BTC-USDT")
orderbook = client.orderBook("coinbasepro", "BTC-USDT")
curl https://api.abyiss.com/ping
We currently support Client Libraries in the following programing languages. To learn more about our client libraries please reference the GitHub Documentation below.
If you need any additional support please contact us on our website Abyiss.com or send us an email at [email protected]. We are here to help.
Last modified 11mo ago