Getting Started
How to get started with the Adesic API.
Welcome to the Adesic API. This guide will walk you through the steps to get started and harness the power of our API, enabling you to connect to over 100+ cryptocurrency exchanges and access real-time data for more than 100,000+ cryptocurrencies.
Get Your API Keys
To begin using the Adesic API, you’ll need to sign up for an account . Once you have an account, you can find your API Key in the dashboard . API keys are used for authentication in all your API requests. Requests without a valid API key will result in an error.
To learn more about Authentication and API Keys please reference the API Keys section under API Architecture.
Explore Available APIs
Our API Endpoints are broken up into a few categories:
- Transaction API: Access on and off ramp services for cryptocurrencies and move money between banks and wallets.
- Crypto API: Access real-time and historical data for over 100,000+ cryptocurrencies across 100+ centralized exchanges. Retrieve information such as market prices, trading volumes, and more.
- Blockchain API: Interact with blockchain networks and retrieve data related to decentralized exchanges, blocks, tokens, liquidity pools, and more. Leverage this API category to build applications that require direct access to blockchain data.
Make Your First Request
To make your first request, just ping our API: https://api.adesic.com/ping . This will return “Hello from Adesic”. All requests return JSON-encoded responses.
GET https://api.adesic.com/ping
{
"ping": "Hello from Adesic",
"ip": "192.168.1.1"
}Copy & Paste Code
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
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")Client Libraries
To simplify your integration process, we provide Client Libraries in various programming languages. You can find our client libraries on GitHub. These libraries offer convenient methods and examples to help you interact with our API in your preferred programming language.
Currently, we support client libraries in the following programming languages: