Coingecko

Vertigo exposes an easy to use API for asset and pair data. Base url is

coingecko-api.vertigo.sh

Requests are subject to rate limits. Please contact [email protected] if your application needs higher rate limits.

Latest Block

The latest block that data is valid for

GET https://coingecko-api.vertigo.sh/latest-block

# Output:
{
  "block": {
    "blockNumber": 380904184,
    "blockTimestamp": 1747263052
  }
}

Asset

Query asset data by id

GET https://coingecko-api.vertigo.sh/asset?id=<ASSET_ID>

# Output:
{
  "asset": {
    "id": "DiZZY2UQ2HSVsFDF6jADc6YYATiTfnQFw4Be1udRZmaY",
    "name": "Dizzy",
    "symbol": "DIZZY",
    "decimals": 6,
    "totalSupply": 1000000000000000,
    "circulatingSupply": 1000000000000000,
    "coinGeckoId": null,
    "metadata": {
      ...
      }
  }
}

Pair

Query pair data by id

Events

Query events in a certain range. Events are of the type Join or Swap

Join: liquidity joined to the pool (only on pool creation)

Swap: A buy or sell event

Pools

Similar output to the /pairs endpoint. Can specify a mint id to return all pools related to the mint

Last updated