v1

latestSwagger 2.02026-07-17127100479.5 KB
stats

Get stats for hyperlane transfers splitted by domain

Returns a paginated list of Hyperlane transfer statistics grouped by counterparty domain (chain), including transfer count and total volume.

get/stats/hyperlane/chains

Query parameters

limitinteger

Count of requested entities

offsetinteger

Offset

Response

OK

amountstring string
domain_idinteger
transfers_countinteger

Example response

[
  {
    "amount": "1234.5678",
    "chain_metadata": {
      "block_explorers": [
        {
          "api_url": "https://api.scan.url.io",
          "family": "etherscan",
          "name": "Block explorer",
          "url": "https://scan.url.io"
        }
      ],
      "name": "name",
      "native_token": {
        "decimals": 18,
        "name": "Ether",
        "symbol": "ETH"
      }
    },
    "domain_id": 123456,
    "transfers_count": 123445
  }
]