LogoLogo
Launch App
  • Standard
    • Thesis
    • Core Contributors
    • Sigma
    • $STND
    • Tokenomics
    • DeFi 3.0
  • Apps
    • Spot
      • For Traders
        • Market
        • Order Type
      • For Developers
        • REST API
        • Websocket Streams
          • Connect
          • Trades
          • Orders
          • Orderhistories
          • Prices
          • Orderbook
      • For Projects
        • Listing
        • Launchpad
        • Terminal
        • Market Making
    • Vaults
  • Standard L3
    • What is Standard L3?
      • How Standard L3 works
      • Modular Architecture
      • Bridge
Powered by GitBook
On this page

Was this helpful?

  1. Apps
  2. Spot
  3. For Developers

REST API

PreviousFor DevelopersNextWebsocket Streams

Last updated 1 month ago

Was this helpful?

Get Exchange data

get

Get Exchange data related to factory contract, total status data counts

Responses
200
OHLCV data is retrieved
application/json
get
GET /api/exchange HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "id": "text",
  "bytecode": "text",
  "deployer": "text",
  "totalDayBuckets": 1,
  "totalWeekBuckets": 1,
  "totalMonthBuckets": 1
}

Get Exchange status data with pagination

get

Get minute, hour, day, week, or month exchange status data with pagination

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: dayPossible values:
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
get
GET /api/exchange/status/{interval}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "buckets": [
    {
      "id": "text",
      "index": 1,
      "protocolId": "text",
      "networkName": "text",
      "totalVolume": 1,
      "tvl": 1,
      "totalGlobalTrades": 1,
      "totalGlobalPairs": 1,
      "totalGlobalTraders": 1,
      "timestamp": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Exchange status data before a timestamp

get

Get minute, hour, day, week, or month exchange status data with pagination before a timestamp

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: dayPossible values:
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
get
GET /api/exchange/status/{interval}/before/{timestamp}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "buckets": [
    {
      "id": "text",
      "index": 1,
      "protocolId": "text",
      "networkName": "text",
      "totalVolume": 1,
      "tvl": 1,
      "totalGlobalTrades": 1,
      "totalGlobalPairs": 1,
      "totalGlobalTraders": 1,
      "timestamp": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Exchange status data after a timestamp

get

Get minute, hour, day, week, or month exchange status data with pagination after a timestamp

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: dayPossible values:
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
get
GET /api/exchange/status/{interval}/after/{timestamp}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "buckets": [
    {
      "id": "text",
      "index": 1,
      "protocolId": "text",
      "networkName": "text",
      "totalVolume": 1,
      "tvl": 1,
      "totalGlobalTrades": 1,
      "totalGlobalPairs": 1,
      "totalGlobalTraders": 1,
      "timestamp": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Token timeseries data

get

Get minute, hour, day, week, or month token data with pagination

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: hourPossible values:
addressstring · max: 42Required

Token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Token progress data is retrieved
application/json
get
GET /api/token/{interval}/{address}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Token progress data is retrieved

{
  "buckets": [
    {
      "id": "text",
      "index": 1,
      "token": "text",
      "open": 1,
      "high": 1,
      "low": 1,
      "close": 1,
      "average": 1,
      "tvl": 1,
      "tvlUSD": 1,
      "volume": 1,
      "volumeUSD": 1,
      "count": 1,
      "timestamp": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Token timeseries data before a timestamp

get

Get minute, hour, day, week, or month token data with pagination before a timestamp

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: hourPossible values:
addressstring · max: 42Required

Token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Token progress data is retrieved
application/json
get
GET /api/token/{interval}/{address}/before/{timestamp}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Token progress data is retrieved

{
  "buckets": [
    {
      "id": "text",
      "index": 1,
      "token": "text",
      "open": 1,
      "high": 1,
      "low": 1,
      "close": 1,
      "average": 1,
      "tvl": 1,
      "tvlUSD": 1,
      "volume": 1,
      "volumeUSD": 1,
      "count": 1,
      "timestamp": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Token timeseries data after a timestamp

get

Get minute, hour, day, week, or month token data with pagination after a timestamp

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: hourPossible values:
addressstring · max: 42Required

Token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Token progress data is retrieved
application/json
get
GET /api/token/{interval}/{address}/after/{timestamp}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Token progress data is retrieved

{
  "buckets": [
    {
      "id": "text",
      "index": 1,
      "token": "text",
      "open": 1,
      "high": 1,
      "low": 1,
      "close": 1,
      "average": 1,
      "tvl": 1,
      "tvlUSD": 1,
      "volume": 1,
      "volumeUSD": 1,
      "count": 1,
      "timestamp": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Token data

get

Retrieve the token information from token address

Path parameters
addressstring · max: 42RequiredExample: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
Responses
200
Retrieve the token information
application/json
get
GET /api/token/{address} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

{
  "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
  "name": "Tether USD",
  "symbol": "USDT",
  "totalSupply": 100000000000,
  "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
  "decimals": 6,
  "priceUSD": 1,
  "sparkline7D": [
    1,
    1,
    1,
    1,
    1,
    1,
    1
  ],
  "cpPrice": 1,
  "cgId": "tether",
  "cmcId": "tether",
  "ath": 9000,
  "atl": 0,
  "listingDate": 1620000000,
  "dayPriceDifference": 0,
  "dayPriceDifferencePercentage": 0,
  "dayTvl": 0,
  "dayVolume": 0,
  "dayTvlUSD": 0,
  "dayVolumeUSD": 0,
  "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
  "totalMinBuckets": 0,
  "totalHourBuckets": 0,
  "totalDayBuckets": 0,
  "totalWeekBuckets": 0,
  "totalMonthBuckets": 0,
  "tag": [
    "stnd_stablecoin"
  ]
}

Get Token data by symbol

get

Retrieve the token information from token symbol

Path parameters
symbolstringRequiredExample: USDT
Responses
200
Retrieve the token information from token symbol search
application/json
get
GET /api/token/symbol/{symbol} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information from token symbol search

{
  "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
  "name": "Tether USD",
  "symbol": "USDT",
  "totalSupply": 100000000000,
  "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
  "decimals": 6,
  "priceUSD": 1,
  "sparkline7D": [
    1,
    1,
    1,
    1,
    1,
    1,
    1
  ],
  "cpPrice": 1,
  "cgId": "tether",
  "cmcId": "tether",
  "ath": 9000,
  "atl": 0,
  "listingDate": 1620000000,
  "dayPriceDifference": 0,
  "dayPriceDifferencePercentage": 0,
  "dayTvl": 0,
  "dayVolume": 0,
  "dayTvlUSD": 0,
  "dayVolumeUSD": 0,
  "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
  "totalMinBuckets": 0,
  "totalHourBuckets": 0,
  "totalDayBuckets": 0,
  "totalWeekBuckets": 0,
  "totalMonthBuckets": 0,
  "tag": [
    "stnd_stablecoin"
  ]
}

Get Tokens data

get

Retrieve the token information from a list of all tokens

Path parameters
pageSizestringRequiredExample: 10
pagestringRequiredExample: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/tokens/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

[
  {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  }
]

Get new listed tokens data

get

Retrieve the token information from a list of all tokens in the order of getting listed

Path parameters
pageSizestringRequiredExample: 10
pagestringRequiredExample: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/tokens/new/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

[
  {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  }
]

Get top gainer tokens data

get

Retrieve the token information from a list of all tokens in the order of getting listed

Path parameters
pageSizestringRequiredExample: 10
pagestringRequiredExample: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/tokens/top-gainer/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

[
  {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  }
]

Get top loser tokens data

get

Retrieve the token information from a list of all tokens in the order of getting listed

Path parameters
pageSizestringRequiredExample: 10
pagestringRequiredExample: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/tokens/top-loser/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

[
  {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  }
]

Get Orders data from an account

get

Retrieve the orders information from an account address

Path parameters
addressstring · max: 42RequiredExample: 0xdAC17F958D2ee523a2206206994597C13D831ec7
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/orders/{address}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

{
  "orders": [
    {
      "id": "text",
      "isBid": true,
      "orderId": 1,
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "pair": "text",
      "orderbook": "text",
      "price": 1,
      "amount": 1,
      "placed": 1,
      "timestamp": 1,
      "account": "text",
      "txHash": "text"
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Recent Trades for a Pair

get

Retrieve the recent trades for a pair with base and quote token addresses

Path parameters
basestring · max: 42Required

Base token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42Required

Quote token address

Example: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/trades/{base}/{quote}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

{
  "trades": [
    {
      "id": "text",
      "orderbook": "text",
      "orderId": 1,
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "pair": "text",
      "isBid": true,
      "price": 1,
      "baseAmount": 1,
      "quoteAmount": 1,
      "timestamp": 1,
      "taker": "text",
      "maker": "text",
      "txHash": "text"
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Recent Trades overall

get

Retrieve the recent trades from all pairs

Path parameters
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/trades/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

{
  "trades": [
    {
      "id": "text",
      "orderbook": "text",
      "orderId": 1,
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "pair": "text",
      "isBid": true,
      "price": 1,
      "baseAmount": 1,
      "quoteAmount": 1,
      "timestamp": 1,
      "taker": "text",
      "maker": "text",
      "txHash": "text"
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Account Trade History

get

Retrieve the trade history for an account address

Path parameters
addressstring · max: 42RequiredExample: 0xdAC17F958D2ee523a2206206994597C13D831ec7
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Retrieve the token information
application/json
get
GET /api/tradehistory/{address}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

{
  "tradeHistory": [
    {
      "id": "text",
      "orderId": 1,
      "isBid": true,
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "pair": "text",
      "orderbook": "text",
      "price": 1,
      "amount": 1,
      "timestamp": 1,
      "maker": "text",
      "taker": "text",
      "account": "text",
      "txHash": "text"
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get Account Order History

get

Retrieve the order history for an account address

Path parameters
addressstring · max: 42RequiredExample: 0xdAC17F958D2ee523a2206206994597C13D831ec7
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Retrieve the token information
application/json
Responseall of
and
get
GET /api/orderhistory/{address}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the token information

{
  "tradeHistory": [
    {
      "id": "text",
      "orderId": 1,
      "isBid": true,
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "pair": "text",
      "orderbook": "text",
      "price": 1,
      "amount": 1,
      "timestamp": 1,
      "maker": "text",
      "taker": "text",
      "account": "text",
      "txHash": "text"
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1,
  "orderHistory": [
    {
      "id": "text",
      "orderId": 1,
      "isBid": true,
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "pair": "text",
      "orderbook": "text",
      "price": 1,
      "amount": 1,
      "timestamp": 1,
      "account": "text",
      "txHash": "text"
    }
  ]
}

Get Orderbook data from base and quote token addresses

get

Retrieve the orderbook information from base and quote token addresses

Path parameters
basestring · max: 42RequiredExample: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42RequiredExample: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
limitstringOptionalExample: 100
Responses
200
Retrieve the orderbook information
application/json
get
GET /api/orderbook/{base}/{quote}/{limit} HTTP/1.1
Host: 
Accept: */*
200

Retrieve the orderbook information

{
  "mktPrice": 1e-8,
  "bids": [
    {
      "price": 1e-8,
      "amount": 100,
      "count": 1
    }
  ],
  "asks": [
    {
      "price": 1e-8,
      "amount": 100,
      "count": 1
    }
  ]
}

Get Pair data

get

Get pair details from base and quote token addresses

Path parameters
basestring · max: 42Required

Base token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42Required

Quote token address

Example: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
Responses
200
OHLCV data is retrieved
application/json
get
GET /api/pair/{base}/{quote} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "id": "text",
  "base": {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  },
  "quote": {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  },
  "price": 1,
  "listingDate": 1,
  "orderbook": "text",
  "bDecimal": 1,
  "qDecimal": 1,
  "totalMinBuckets": 1,
  "totalHourBuckets": 1,
  "totalDayBuckets": 1,
  "totalWeekBuckets": 1,
  "totalMonthBuckets": 1,
  "baseTvl": 1,
  "quoteTvl": 1,
  "baseTvlUSD": 1,
  "quoteTvlUSD": 1
}

Get Default Pair data

get

Get default pair details

Responses
200
OHLCV data is retrieved
application/json
get
GET /api/pair/default HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "id": "text",
  "base": {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  },
  "quote": {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  },
  "price": 1,
  "listingDate": 1,
  "orderbook": "text",
  "bDecimal": 1,
  "qDecimal": 1,
  "totalMinBuckets": 1,
  "totalHourBuckets": 1,
  "totalDayBuckets": 1,
  "totalWeekBuckets": 1,
  "totalMonthBuckets": 1,
  "baseTvl": 1,
  "quoteTvl": 1,
  "baseTvlUSD": 1,
  "quoteTvlUSD": 1
}

Get Pair data by symbol

get

Get pair details from base and quote token symbols

Path parameters
baseSymbolstringRequired

Base token symbol

Example: ETH
quoteSymbolstringRequired

Quote token symbol

Example: USDT
Responses
200
OHLCV data is retrieved
application/json
get
GET /api/pair/symbol/{baseSymbol}/{quoteSymbol} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "id": "text",
  "base": {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  },
  "quote": {
    "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "name": "Tether USD",
    "symbol": "USDT",
    "totalSupply": 100000000000,
    "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
    "decimals": 6,
    "priceUSD": 1,
    "sparkline7D": [
      1,
      1,
      1,
      1,
      1,
      1,
      1
    ],
    "cpPrice": 1,
    "cgId": "tether",
    "cmcId": "tether",
    "ath": 9000,
    "atl": 0,
    "listingDate": 1620000000,
    "dayPriceDifference": 0,
    "dayPriceDifferencePercentage": 0,
    "dayTvl": 0,
    "dayVolume": 0,
    "dayTvlUSD": 0,
    "dayVolumeUSD": 0,
    "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
    "totalMinBuckets": 0,
    "totalHourBuckets": 0,
    "totalDayBuckets": 0,
    "totalWeekBuckets": 0,
    "totalMonthBuckets": 0,
    "tag": [
      "stnd_stablecoin"
    ]
  },
  "price": 1,
  "listingDate": 1,
  "orderbook": "text",
  "bDecimal": 1,
  "qDecimal": 1,
  "totalMinBuckets": 1,
  "totalHourBuckets": 1,
  "totalDayBuckets": 1,
  "totalWeekBuckets": 1,
  "totalMonthBuckets": 1,
  "baseTvl": 1,
  "quoteTvl": 1,
  "baseTvlUSD": 1,
  "quoteTvlUSD": 1
}

Get New Listing Pairs data

get

Get paginated newly listed Pair data from a list of all pairs

Path parameters
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Paginated Pair data is retrieved
application/json
get
GET /api/pairs/new/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Paginated Pair data is retrieved

{
  "pairs": [
    {
      "id": "text",
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "price": 1,
      "listingDate": 1,
      "orderbook": "text",
      "bDecimal": 1,
      "qDecimal": 1,
      "totalMinBuckets": 1,
      "totalHourBuckets": 1,
      "totalDayBuckets": 1,
      "totalWeekBuckets": 1,
      "totalMonthBuckets": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1
}

Get Top Gainer Pairs data

get

Get paginated top gainer Pair data from a list of all pairs

Path parameters
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Paginated Pair data is retrieved
application/json
get
GET /api/pairs/top-gainer/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Paginated Pair data is retrieved

{
  "pairs": [
    {
      "id": "text",
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "price": 1,
      "listingDate": 1,
      "orderbook": "text",
      "bDecimal": 1,
      "qDecimal": 1,
      "totalMinBuckets": 1,
      "totalHourBuckets": 1,
      "totalDayBuckets": 1,
      "totalWeekBuckets": 1,
      "totalMonthBuckets": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1
}

Get Top Loser Pairs data

get

Get paginated top loser Pair data from a list of all pairs

Path parameters
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Paginated Pair data is retrieved
application/json
get
GET /api/pairs/top-loser/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Paginated Pair data is retrieved

{
  "pairs": [
    {
      "id": "text",
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "price": 1,
      "listingDate": 1,
      "orderbook": "text",
      "bDecimal": 1,
      "qDecimal": 1,
      "totalMinBuckets": 1,
      "totalHourBuckets": 1,
      "totalDayBuckets": 1,
      "totalWeekBuckets": 1,
      "totalMonthBuckets": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1
}

Get all Pairs data

get

Get paginated Pair data from a list of all pairs

Path parameters
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
Paginated Pair data is retrieved
application/json
get
GET /api/pairs/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

Paginated Pair data is retrieved

{
  "pairs": [
    {
      "id": "text",
      "base": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "quote": {
        "id": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "name": "Tether USD",
        "symbol": "USDT",
        "totalSupply": 100000000000,
        "logoURI": "https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
        "decimals": 6,
        "priceUSD": 1,
        "sparkline7D": [
          1,
          1,
          1,
          1,
          1,
          1,
          1
        ],
        "cpPrice": 1,
        "cgId": "tether",
        "cmcId": "tether",
        "ath": 9000,
        "atl": 0,
        "listingDate": 1620000000,
        "dayPriceDifference": 0,
        "dayPriceDifferencePercentage": 0,
        "dayTvl": 0,
        "dayVolume": 0,
        "dayTvlUSD": 0,
        "dayVolumeUSD": 0,
        "creator": "0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5",
        "totalMinBuckets": 0,
        "totalHourBuckets": 0,
        "totalDayBuckets": 0,
        "totalWeekBuckets": 0,
        "totalMonthBuckets": 0,
        "tag": [
          "stnd_stablecoin"
        ]
      },
      "price": 1,
      "listingDate": 1,
      "orderbook": "text",
      "bDecimal": 1,
      "qDecimal": 1,
      "totalMinBuckets": 1,
      "totalHourBuckets": 1,
      "totalDayBuckets": 1,
      "totalWeekBuckets": 1,
      "totalMonthBuckets": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1
}

Get all OHLCV data from a pair

get

Get all minute, hour, day, week, and month OHLCV data with pagination

Path parameters
basestring · max: 42Required

Base token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42Required

Quote token address

Example: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
get
GET /api/ohlcv/total/{base}/{quote}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "pairDayBuckets": {
    "buckets": [
      {
        "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
        "index": 1,
        "protocolId": "text",
        "networkName": "text",
        "totalVolume": 1,
        "tvl": 1,
        "totalGlobalTrades": 1,
        "totalGlobalPairs": 1,
        "totalGlobalTraders": 1,
        "timestamp": 1620000000,
        "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
        "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "open": 1,
        "high": 1,
        "low": 1,
        "close": 1,
        "average": 1,
        "baseVolume": 1,
        "quoteVolume": 1,
        "baseVolumeUSD": 1,
        "quoteVolumeUSD": 1,
        "baseTvl": 1,
        "quoteTvl": 1,
        "baseTvlUSD": 1,
        "quoteTvlUSD": 1,
        "count": 1
      }
    ],
    "totalCount": 1,
    "totalPages": 1,
    "pageSize": 1
  },
  "pairHourBuckets": {
    "buckets": [
      {
        "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
        "index": 1,
        "protocolId": "text",
        "networkName": "text",
        "totalVolume": 1,
        "tvl": 1,
        "totalGlobalTrades": 1,
        "totalGlobalPairs": 1,
        "totalGlobalTraders": 1,
        "timestamp": 1620000000,
        "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
        "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "open": 1,
        "high": 1,
        "low": 1,
        "close": 1,
        "average": 1,
        "baseVolume": 1,
        "quoteVolume": 1,
        "baseVolumeUSD": 1,
        "quoteVolumeUSD": 1,
        "baseTvl": 1,
        "quoteTvl": 1,
        "baseTvlUSD": 1,
        "quoteTvlUSD": 1,
        "count": 1
      }
    ],
    "totalCount": 1,
    "totalPages": 1,
    "pageSize": 1
  },
  "pairMinBuckets": {
    "buckets": [
      {
        "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
        "index": 1,
        "protocolId": "text",
        "networkName": "text",
        "totalVolume": 1,
        "tvl": 1,
        "totalGlobalTrades": 1,
        "totalGlobalPairs": 1,
        "totalGlobalTraders": 1,
        "timestamp": 1620000000,
        "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
        "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "open": 1,
        "high": 1,
        "low": 1,
        "close": 1,
        "average": 1,
        "baseVolume": 1,
        "quoteVolume": 1,
        "baseVolumeUSD": 1,
        "quoteVolumeUSD": 1,
        "baseTvl": 1,
        "quoteTvl": 1,
        "baseTvlUSD": 1,
        "quoteTvlUSD": 1,
        "count": 1
      }
    ],
    "totalCount": 1,
    "totalPages": 1,
    "pageSize": 1
  },
  "pairWeekBuckets": {
    "buckets": [
      {
        "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
        "index": 1,
        "protocolId": "text",
        "networkName": "text",
        "totalVolume": 1,
        "tvl": 1,
        "totalGlobalTrades": 1,
        "totalGlobalPairs": 1,
        "totalGlobalTraders": 1,
        "timestamp": 1620000000,
        "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
        "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "open": 1,
        "high": 1,
        "low": 1,
        "close": 1,
        "average": 1,
        "baseVolume": 1,
        "quoteVolume": 1,
        "baseVolumeUSD": 1,
        "quoteVolumeUSD": 1,
        "baseTvl": 1,
        "quoteTvl": 1,
        "baseTvlUSD": 1,
        "quoteTvlUSD": 1,
        "count": 1
      }
    ],
    "totalCount": 1,
    "totalPages": 1,
    "pageSize": 1
  },
  "pairMonthBuckets": {
    "buckets": [
      {
        "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
        "index": 1,
        "protocolId": "text",
        "networkName": "text",
        "totalVolume": 1,
        "tvl": 1,
        "totalGlobalTrades": 1,
        "totalGlobalPairs": 1,
        "totalGlobalTraders": 1,
        "timestamp": 1620000000,
        "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
        "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "open": 1,
        "high": 1,
        "low": 1,
        "close": 1,
        "average": 1,
        "baseVolume": 1,
        "quoteVolume": 1,
        "baseVolumeUSD": 1,
        "quoteVolumeUSD": 1,
        "baseTvl": 1,
        "quoteTvl": 1,
        "baseTvlUSD": 1,
        "quoteTvlUSD": 1,
        "count": 1
      }
    ],
    "totalCount": 1,
    "totalPages": 1,
    "pageSize": 1
  }
}

Get OHLCV data from a pair

get

Get minute, hour, day, week, or month OHLCV data with pagination

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: hourPossible values:
basestring · max: 42Required

Base token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42Required

Quote token address

Example: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
Responseall of
and
get
GET /api/ohlcv/{interval}/{base}/{quote}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "buckets": [
    {
      "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
      "index": 1,
      "protocolId": "text",
      "networkName": "text",
      "totalVolume": 1,
      "tvl": 1,
      "totalGlobalTrades": 1,
      "totalGlobalPairs": 1,
      "totalGlobalTraders": 1,
      "timestamp": 1620000000,
      "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
      "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "open": 1,
      "high": 1,
      "low": 1,
      "close": 1,
      "average": 1,
      "baseVolume": 1,
      "quoteVolume": 1,
      "baseVolumeUSD": 1,
      "quoteVolumeUSD": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1,
      "count": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get OHLCV data before a timestamp

get

Get minute, hour, day, week, or month OHLCV data with pagination before a timestamp

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: hourPossible values:
basestring · max: 42Required

Base token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42Required

Quote token address

Example: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
Responseall of
and
get
GET /api/ohlcv/{interval}/{base}/{quote}/before/{timestamp}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "buckets": [
    {
      "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
      "index": 1,
      "protocolId": "text",
      "networkName": "text",
      "totalVolume": 1,
      "tvl": 1,
      "totalGlobalTrades": 1,
      "totalGlobalPairs": 1,
      "totalGlobalTraders": 1,
      "timestamp": 1620000000,
      "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
      "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "open": 1,
      "high": 1,
      "low": 1,
      "close": 1,
      "average": 1,
      "baseVolume": 1,
      "quoteVolume": 1,
      "baseVolumeUSD": 1,
      "quoteVolumeUSD": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1,
      "count": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}

Get OHLCV data after a timestamp

get

Get minute, hour, day, week, or month OHLCV data with pagination after a timestamp

Path parameters
intervalstring · enumRequired

Time interval of the OHLCV data

Example: hourPossible values:
basestring · max: 42Required

Base token address

Example: 0xe8CabF9d1FFB6CE23cF0a86641849543ec7BD7d5
quotestring · max: 42Required

Quote token address

Example: 0x40fCa9cB1AB15eD9B5bDA19A52ac00A78AE08e1D
timestampstringOptional

Timestamp in seconds

Example: 1620000000
pageSizestringRequired

Number of results per page

Example: 100
pagestringRequired

Page number

Example: 1
Responses
200
OHLCV data is retrieved
application/json
Responseall of
and
get
GET /api/ohlcv/{interval}/{base}/{quote}/after/{timestamp}/{pageSize}/{page} HTTP/1.1
Host: 
Accept: */*
200

OHLCV data is retrieved

{
  "buckets": [
    {
      "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7-0x6B175474E89094C44Da98b954EedeAC495271d0F-min",
      "index": 1,
      "protocolId": "text",
      "networkName": "text",
      "totalVolume": 1,
      "tvl": 1,
      "totalGlobalTrades": 1,
      "totalGlobalPairs": 1,
      "totalGlobalTraders": 1,
      "timestamp": 1620000000,
      "base": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "quote": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
      "orderbook": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "open": 1,
      "high": 1,
      "low": 1,
      "close": 1,
      "average": 1,
      "baseVolume": 1,
      "quoteVolume": 1,
      "baseVolumeUSD": 1,
      "quoteVolumeUSD": 1,
      "baseTvl": 1,
      "quoteTvl": 1,
      "baseTvlUSD": 1,
      "quoteTvlUSD": 1,
      "count": 1
    }
  ],
  "totalCount": 1,
  "totalPages": 1,
  "pageSize": 1
}
  • GETGet Exchange data
  • GETGet Exchange status data with pagination
  • GETGet Exchange status data before a timestamp
  • GETGet Exchange status data after a timestamp
  • GETGet Token timeseries data
  • GETGet Token timeseries data before a timestamp
  • GETGet Token timeseries data after a timestamp
  • GETGet Token data
  • GETGet Token data by symbol
  • GETGet Tokens data
  • GETGet new listed tokens data
  • GETGet top gainer tokens data
  • GETGet top loser tokens data
  • GETGet Orders data from an account
  • GETGet Recent Trades for a Pair
  • GETGet Recent Trades overall
  • GETGet Account Trade History
  • GETGet Account Order History
  • GETGet Orderbook data from base and quote token addresses
  • GETGet Pair data
  • GETGet Default Pair data
  • GETGet Pair data by symbol
  • GETGet New Listing Pairs data
  • GETGet Top Gainer Pairs data
  • GETGet Top Loser Pairs data
  • GETGet all Pairs data
  • GETGet all OHLCV data from a pair
  • GETGet OHLCV data from a pair
  • GETGet OHLCV data before a timestamp
  • GETGet OHLCV data after a timestamp