Crypto Market Data - Abyiss

無料
よって Abyiss | 更新済み 2 months ago | Financial
Health Check

N/A

フォロワー:1
リソース:
製品のウェブサイト
API作成者:
Rapid account: Abyiss
Abyiss
abyiss
評価APIにログイン
評価:5-投票: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")