v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Nut.link

Specific ticker for an address

List of records of a specific ticker

get/nutlink/{address}/tickers/{ticker}

Path parameters

addressstring required

Address of a metadata oracle

tickerstring required

Ticker for the pool record

Query parameters

countinteger

The number of results displayed on one page.

pageinteger

The page number for listing the results.

order'asc' | 'desc'

The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.

Response

Return the tickers provided by the metadata oracle

tx_hashstring required

Hash of the transaction

block_heightinteger required

Block height of the record

tx_indexinteger required

Transaction index within the block

Example response

[
  {
    "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
    "block_height": 2657092,
    "tx_index": 8,
    "payload": [
      {
        "source": "coinGecko",
        "value": "1.29"
      },
      {
        "source": "cryptoCompare",
        "value": "1.283"
      }
    ]
  }
]