v1

latestSwagger 2.02026-07-17127100479.5 KB
ibc

Get ibc transfers info

Returns a paginated list of IBC token transfers. Supports filtering by channel, chain ID, sender, receiver, either-party address, and transaction hash.

get/ibc/transfer

Query parameters

limitinteger

Count of requested entities

offsetinteger

Offset

sort'asc' | 'desc'

Sort order. Default: desc

channel_idstring

Channel id

chain_idstring

Chain id

receiverstring

Receiver address

senderstring

Sender address

addressstring

Address: receiver or sender

hashstring

Transaction hash in hexadecimal

Response

OK

amountstring string
chain_idstring binary
channel_idstring string
connection_idstring string
denomstring string
heightinteger
idinteger
memostring string
portstring string
sequenceinteger
timestring date-time
timeoutstring date-time
timeout_heightinteger
tx_hashstring binary

Example response

[
  {
    "amount": "123445",
    "chain_id": "osmosis-1",
    "channel_id": "channel-1",
    "connection_id": "connection-1",
    "denom": "utia",
    "height": 100,
    "id": 123456,
    "memo": "memo",
    "port": "transfer",
    "receiver": {
      "celestials": {
        "image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
        "name": "name",
        "primary": true,
        "status": "VERIFIED"
      },
      "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60"
    },
    "relayer": {
      "addresses": [
        "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60"
      ],
      "contact": {
        "discord": "https://discord.cosmosrescue.com",
        "github": "https://github.com/cosmosrescue",
        "medium": "https://medium.com/cosmosrescue",
        "telegram": "https://t.me/cosmosrescue",
        "twitter": "https://x.com/cosmosrescue",
        "website": "https://cosmosrescue.com"
      },
      "logo": "https://raw.githubusercontent.com/irisnet/iob-registry/main/relayers/cosmosrescue/logo.png",
      "name": "cosmosrescue"
    },
    "sender": {
      "celestials": {
        "image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
        "name": "name",
        "primary": true,
        "status": "VERIFIED"
      },
      "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60"
    },
    "sequence": 123456,
    "time": "2023-07-04T03:10:57+00:00",
    "timeout": "2023-07-04T03:10:57+00:00",
    "timeout_height": 100,
    "tx_hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF"
  }
]