Base API URL
All deBridge API requests use the following base URL:This is the official API endpoint. Do not use alternative URLs.
Core Endpoints
Create Bridge Order
Create a cross-chain bridge order for token transfers.GET /dln/order/create-txSource chain ID (e.g., ‘1’ for Ethereum)
Token address on source chain
Amount to bridge in token’s smallest unit (wei, satoshi, etc.)
Destination chain ID
Token address on destination chain
Recipient address on destination chain
Expected output amount. Use “auto” for automatic calculation
Sender’s wallet address
Authority address for the order on source chain. Falls back to sender’s address
Address to receive refunds on source chain. Typically the sender’s address
Authority address for the order on destination chain. Falls back to recipient’s address
Referral code for the transaction
Whether to prepend operating expenses. Recommended to set to
trueAffiliate fee percentage (e.g., “0.5” for 0.5%). Must be set with
affiliateFeeRecipientAddress to receive affiliate fees. Must be set with
affiliateFeePercentJSON-stringified hook object for executing actions on the destination chain
Unique identifier for the bridge order
Estimated amounts and fees for the order
Stats API Endpoints
The Stats API is used for tracking order status and retrieving order information.Get Order ID by Transaction Hash
Retrieve the order ID associated with a transaction hash.GET https://stats-api.dln.trade/api/Transaction/{txHash}/orderIdsTransaction hash from the source chain
Array of order IDs associated with the transaction
Get Order Status by Order ID
Retrieve the current status and details of a bridge order.GET https://stats-api.dln.trade/api/Orders/{orderId}Unique order identifier
Current status of the order (e.g., “Created”, “Fulfilled”, “ClaimedUnlock”)
Source chain transaction details
Destination chain transaction details (if fulfilled)
Amount details including input and output amounts
Additional Resources
Supported Chains
View all supported chain IDs
Utility Functions
Helper functions for API integration