BlockTrades
Execute block trade
Execute a block trade with selected offers.
Executes a parent block trade by selecting specific offers from required signers.
Requirements:
- Called by block trade initiator
- All selected offers must have valid, unexpired signatures
- Required signers must have submitted offers for all markets
- Block trade must be in READY_TO_EXECUTE state
Execution Process:
- All trades processed together
- Creates fills and updates balances upon success
- Participants receive fill notifications
Returns: Executed block trade with status (COMPLETED/FAILED), fill details, timestamps, and settlement info.
post/block-trades/{block_trade_id}/execute
Path parameters
block_trade_idstring required
Block Trade ID
Request body
Example request
{
"execution_nonce": "execution_001"
}Response
OK
Example response
{
"block_expiration": 1640995800000,
"block_id": "block_456",
"created_at": 1640995200000,
"initiator": "0x123...abc",
"last_updated_at": 1640995400000,
"nonce": "67890",
"parent_block_id": "block_123"
}