Abyiss
HomeAPI KeyContact Us
  • Free API Key
  • Introduction
    • Welcome
    • Getting Started
    • Reading Documentation
    • Client Libraries
    • API Architecture
      • API Keys - Authentication
      • API Server URL
      • Requests & Error Codes
      • Rate Limits
  • Octane API
    • Introduction
    • Integration Guides
      • Crypto Off Ramp APIs - Business Guide
    • References
      • Transaction Types
      • Payment Methods
      • Transaction Fees
      • Partner Fees
    • APIs
      • Transactions
      • Assets
      • Payment Methods
        • Bank Accounts
        • Wallets
      • Subaccounts
      • KYC (Know Your Customer)
  • Crypto API
    • Introduction
    • References
      • Supported Exchanges
      • Historical Data
      • Pagination
      • Return Types
    • REST APIs
      • Exchanges
      • Exchanges Count
      • Exchange Data
      • Exchange Status
      • Exchange Markets
      • Market Details
      • Current Price
      • Aggregates (Bars)
      • Last Aggregate
      • Trades
      • Last Trade
      • Snapshot
      • Order Books
      • Liquidity
      • Whales
    • WebSockets
      • Request Access
  • Blockchain API
    • Introduction
    • References
      • Supported Exchanges
      • Historical Data
      • Pagination
      • Query Parameters
      • Error Handling
    • REST APIs
      • Exchanges
      • Blockchains
      • Blocks
      • Exchange Data
      • Tokens
      • Token Data
      • Token Aggregates (Bars)
      • Token Trades
      • Pools
      • Pool Data
      • Pool Aggregates (Bars)
      • Pool Trades
      • Token Search
    • WebSockets
      • Request Access
  • Alerts API
    • Request Access
  • Changes
    • Changelog
    • Upcoming Changes
  • Resources
    • Glossary
    • Social Media
    • Legal Guide
    • White Paper
    • Deprecated
      • Crypto APIs /v1 - REST APIs
        • Exchanges
        • Exchanges Count
        • Exchange Data
        • Exchange Status
        • Exchange Markets
        • Market Details
        • Current Price
        • Aggregates (Bars)
        • Last Aggregate
        • Trades
        • Last Trade
        • Snapshot
        • Order Books
        • Liquidity
        • Whales
      • Blockchain APIs /v1 - REST APIs
        • Exchanges
        • Blockchains
        • Blocks
        • Exchange Data
        • Tokens
        • Token Data
        • Token Aggregates (Bars)
        • Token Trades
        • Pools
        • Pool Data
        • Pool Aggregates (Bars)
        • Pool Trades
        • Token Search
Powered by GitBook
On this page
  • Getting Started with the Abyiss API
  • Step 1: Get Your API Keys
  • Step 2: Explore Available Endpoints
  • Step 3: Make Your First Request
  • Ping Abyiss
  • Step 4: Copy & Paste Code
  • Step 5: Client Libraries
  • Need support?

Was this helpful?

  1. Introduction

Getting Started

How to get started with the Abyiss API.

PreviousWelcomeNextReading Documentation

Last updated 2 months ago

Was this helpful?

API access differs based on your plan

Getting Started with the Abyiss API

Welcome to the Abyiss 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.

Step 1: Get Your API Keys

To begin using the Abyiss API, you'll need to . Once you have an account, you can find your API Key in the . 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 section under .

Step 2: Explore Available Endpoints

Our API Endpoints are broken up into a few categories:

  • : Access on and off-ramp services for cryptocurrencies.

  • : 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.

  • : 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.

You will need an to access all of our endpoints.

Step 3: Make Your First Request

Ping Abyiss

GET https://api.abyiss.com/ping

Returns "Hello from the Abyiss"

{
    "ping": "Hello from the Abyiss"
}

Example URL

Response Object

{
    "ping": "Hello from the Abyiss"
}

Step 4: 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.

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")
import { Abyiss } from 'abyiss'

const A = new Abyiss('YOUR API KEY')

async function showExchanges () {
  console.log(await A.exchanges())
}

async function aggregate () {
    console.log(await A.aggregates('coinbasepro', 'btc-usd', '1m', {limit: 2})) 
}

showExchanges()
aggregate()
curl https://api.abyiss.com/ping

Step 5: Client Libraries

Currently, we support client libraries in the following programming languages:

For more information about our client libraries, please refer to the GitHub documentation.

Need support?

To make your first request, just ping our API: . This will return "Hello from the Abyiss". All requests return JSON-encoded responses.

To simplify your integration process, we provide 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. Feel free to copy and paste the code examples into your development environment and try them out.

If you need any additional support please contact us on our website or send us an email at . We are here to help.

sign up for an account
dashboard
API Keys - Authentication
API Architecture
Octane API
Crypto API
Blockchain API
API Key
https://api.abyiss.com/ping
Client Libraries
Abyiss.com
support@abyiss.com
https://api.abyiss.com/pingapi.abyiss.com
Click me!
GitHub - Abyiss/Client-python: Python Client for Abyiss APIGitHub
Python Client
GitHub - Abyiss/Client-js: JavaScript Client for Abyiss APIGitHub
Javascript Client
GitHub - Abyiss/Client-http: HTTP Client for Abyiss APIGitHub
HTTP Client
Logo
Logo
Logo