API Reference

This API endpoint returns Bancor V3 data

Tokens

Returns all available tokens in the Bancor Network, along with their metadata, liquidity, volume and pricing info. You can provide an optional filter in order to only receive data for a specific token.

Tokens

GET https://api-v3.bancor.network/tokens

Query Parameters

Name
Type
Description

dlt_type

string

blockchain type (ethereum)

dlt_id

string

token id (address)

{
  "data": [
    {
      //dltId: the contract address of the token.
      "dltId": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C",
      //symbol: the token's ticker symbol.
      "symbol": "BNT",
      //rate: the conversion rate of the token to the specified currencies.
      "rate": {
        "usd": "0.670200"
      },
      //rate24hAgo: the conversion rate of the token to the specified currencies 24 hours ago.
      "rate24hAgo": {
        "usd": "0.697400"
      }
    },
    {
      "dltId": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
      "symbol": "ETH",
      "rate": {
        "bnt": "1643.535445429788679669",
        "usd": "1106.428061",
        "eur": "1064.024847",
        "eth": "0.992695409039592362"
      },
      "rate24hAgo": {
        "bnt": "1633.061788364370359999",
        "usd": "1138.897291",
        "eur": "1098.397358",
        "eth": "1.001066876267359030"
      }
    }
  ],
  "timestamp": {
    "ethereum": {
      "block": 14973913,
      "timestamp": 1655391209
    }
  }
}

Pools

Returns all pools in the Bancor Network, along with their metadata, liquidity, volume and pricing info. You can provide an optional filter in order to only receive data for a specific pool.

Pools

GET https://api-v3.bancor.network/pools

Query Parameters

Name
Type
Description

dlt_type

string

blockchain type (ethereum)

dlt_id

String

pool id (pool token address)

BNT

Returns all relevant values for BNT pool and activity.

BNT

GET https://api-v3.bancor.network/bnt

Stats

Returns global stats of the Bancor Network.

Stats

GET https://api-v3.bancor.network/stats

Last updated