Skip to main content
POST
/
dex
/
confirmTx
Confirm DEX transaction
curl --request POST \
  --url https://api-partner.houdiniswap.com/v2/dex/confirmTx \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "txHash": "<string>"
}
'
true

Authorizations

Authorization
string
header
required

Body

application/json

Request body for confirming a DEX transaction

id
string
required

The Houdini order ID

Minimum string length: 3
txHash
string

The transaction hash to confirm. Required for on-chain orders, optional for off-chain orders. Supports multiple chain formats: EVM (0x + 64 hex), Solana (base58), Bitcoin (hex), TON, Tron, Sui.

Required string length: 10 - 128
Pattern: ^[a-zA-Z0-9+/=_.-]+$

Response

Transaction confirmed

The response is of type boolean.