Crypto Market Data - Abyiss

FREE
By Abyiss | Updated il y a un mois | Financial
Health Check

N/A

Followers: 1
Resources:
Product Website
API Creator:
Rapid account: Abyiss
Abyiss
abyiss
Log In to Rate API
Rating: 5 - Votes: 1

README

Abyiss Documentation

Welcome to the Abyiss API documentation. This documentation outlines API functionally, market details, and API architectureโ€ฆ In order to access the API, you will need an account and an API Key. Both can be created here.

If you need any additional support please contact us on our website Abyiss.com or send us an email at support@abyiss.com.

Official Documentation

We recommend reference our official documentation while using our API.

Getting Started

The Abyiss API has resource-oriented URLs, accepts from-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

The data that you can access through the Abyiss API differs based on your plan.

We also recommend watching this Get Started Video to help jump start your journey.

Get Your API Keys

To create an API Key you will need to sign up for an account here. Once you are signed up for a free account you can find your API Key in the dashboard. Your API requests are authenticated using API keys. Any request that doesnโ€™t include an API key will return an error.

Make Your First Request

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.

Copy & Paste Code

Take a look at how you might call our API using python.

Feel free to copy and paste this code into your own development environment and try it for yourself.

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")