v1

latestOpenAPI 3.1.02026-07-1288262495.0 KB
Interchain Messaging

List ICM messages

Lists ICM messages. Ordered by timestamp in descending order.

get/v1/icm/messages

Query parameters

pageTokenstring

A page token, received from a previous list call. Provide this to retrieve the subsequent page.

pageSizeinteger

The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.

sourceBlockchainIdstring

The base58 encoded blockchain ID or evm chain ID of the source chain that the ICM message was sent from.

destinationBlockchainIdstring

The base58 encoded blockchain ID or evm chain ID of the destination chain that the ICM message was sent to.

blockchainIdstring

The base58 encoded blockchain ID of either source or destination chain that one ICM message interacts with.

tostring

The address of the recipient of the ICM message.

fromstring

The address of the sender of the ICM message.

network'mainnet' | 'fuji' | 'testnet'

Either mainnet or testnet/fuji.

Response

Successful response

nextPageTokenstring

A token, which can be sent as pageToken to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.

Example response

{
  "messages": [
    {
      "rewardDetails": {
        "address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
        "name": "Wrapped AVAX",
        "symbol": "WAVAX",
        "decimals": 18,
        "logoUri": "https://images.ctfassets.net/gcj8jwzm6086/5VHupNKwnDYJvqMENeV7iJ/fdd6326b7a82c8388e4ee9d4be7062d4/avalanche-avax-logo.svg"
      }
    }
  ]
}