IBExWalletAPI

Tenant chains and wallets

Returns active chains enriched with wallets and module status for the whole current tenant (rpId). Response shape mirrors GET /v1.2/users/me/chainid.

GET
/v1.2/domain/chainid

Authorization

x-api-key<token>

In: header

curl -X GET "https://passkeys-testnet.ibex.fi/v1.2/domain/chainid" \
  -H "x-api-key: <token>"

Default Response

{
  "defaultChainId": 0,
  "chains": [
    {
      "chainId": 0,
      "chainName": "string",
      "modules": {
        "recovery": true,
        "automation": true,
        "multisig": true
      },
      "wallets": [
        {
          "address": "string"
        }
      ]
    }
  ]
}