v1

latestSwagger 2.02026-07-17127100479.5 KB
ibc

Get ibc connections info

Returns a paginated list of IBC connections. Supports filtering by client ID.

get/ibc/connection

Query parameters

limitinteger

Count of requested entities

offsetinteger

Offset

sort'asc' | 'desc'

Sort order. Default: desc

client_idstring

Client id

Response

OK

channels_countinteger
connected_atstring date-time
connected_heightinteger
connected_tx_hashstring binary
counterparty_client_idstring string
counterparty_connection_idstring string
created_atstring date-time
created_tx_hashstring binary
heightinteger
idstring string

Example response

[
  {
    "channels_count": 100,
    "client": {
      "chain_id": "osmosis-1",
      "id": "client-1",
      "type": "client"
    },
    "connected_at": "2023-07-04T03:10:57+00:00",
    "connected_height": 100,
    "connected_tx_hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
    "counterparty_client_id": "client-1",
    "counterparty_connection_id": "connection-1",
    "created_at": "2023-07-04T03:10:57+00:00",
    "created_tx_hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
    "height": 100,
    "id": "connection-1"
  }
]