API Reference

List UDA addresses

GET /uda

List the Universal Deposit Addresses configured for your tenant. The tuple `(owner, network_id, to_address, asset_symbol)` uniquely identifies a UDA; pass any subset to filter. `to_address` and `asset_symbol` each require `network_id`.

Query parameters

NameTypeDescription
owneroptionalstringFilter by owner.
network_idoptionalstringFilter by destination network id.
to_addressoptionalstringFilter by destination address.
asset_symboloptionalstringFilter by destination asset symbol (requires network_id).
statusoptionalstringenum: active · retiredFilter by status.
limitoptionalintegerdefault: 50Page size (default 50, max 200).
offsetoptionalintegerdefault: 0Number of items to skip (default 0).

Responses

A page of UDA addresses.

    • idstring
    • ownerstring
    • statusstringenum: active · retired
    • created_atstringformat: date-time
    • Resolved destination (symbol plus the resolved contract address).

    • Empty when no rules are configured.

    • countinteger

      Number of items in this page.

    • limitinteger
    • offsetinteger
Request
curl "https://api.stridge.dev/v1/uda" \
  -H "X-API-Key: $STRIDGE_API_KEY"

Set your key as STRIDGE_API_KEY (sent as X-API-Key).

Response200
"id": "uda_2f8c1a9d4e5f6071",
"owner": "0x9f8e7d6c5b4a39281706f5e4d3c2b1a098765432",
"status": "active",
"created_at": "2026-05-20T14:03:12Z",
"address": "0x3a1f8b2c9d4e5f60718293a4b5c6d7e8f9012345",
"network_id": "60",
"eip155_id": "1",
"network_name": "Ethereum",
"asset_symbol": "USDC",
"asset_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"asset_decimals": 6
},
"address": "0x7c2d9a1b3e4f5061728394a5b6c7d8e9f0a1b2c3",
"network_id": "60",
"eip155_id": "1",
"network_name": "Ethereum",
"symbol": "USDC",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"decimals": 6,
"logo": "https://assets.stridge.com/tokens/usdc.png"
}
]
}
],
"source_network_id": "60",
"source_asset_symbol": "USDT",
"source_token_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
},
"address": "0x3a1f8b2c9d4e5f60718293a4b5c6d7e8f9012345",
"network_id": "60",
"eip155_id": "1",
"network_name": "Ethereum",
"asset_symbol": "USDC",
"asset_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"asset_decimals": 6
}
}
]
}
],
"count": 20,
"limit": 50,
"offset": 0
}
}