Create Limit Order
Headers
Header
Type
Description
Example
Request body
Field
Type
Required
Description
Example
Example
Responses
Code
Description
Last updated
curl -X POST 'https://api.gateway.zert.com/api/v1/limit-orders/limit' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Idempotency-Key: limit-create-001' \
-d '{
"timeInForce": "GTC",
"minAmountOut": "1",
"fromChain": "arbitrum",
"toChain": "avax",
"tokenIn": "TBTC",
"tokenOut": "WETH",
"network": "mainnet",
"amount": "100.00",
"slippageBps": 75,
"recipient": "0x1234567890123456789012345678901234567890"
}'{
"data": {
"limitOrderId": "lim_abc123",
"status": "open",
"expiresAtMs": 1745403600000,
"minAmountOut": "1"
},
"meta": {
"requestId": "req_xyz",
"timestamp": "2026-04-23T12:00:00.000Z"
}
}