v50

latestOpenAPI 3.0.1raw.githubusercontent.com2026-03-2591124300.0 KB
BlockTrades

Get block trade offers

Get all offers for a specific block trade.

Returns all offers submitted for a parent block trade by required signers.

Access: Available to initiator, required signers, or accounts with submitted offers.

Returns: Array of offers with:

  • Offer ID and parent block trade reference
  • Offering account and trade details per market
  • Execution signatures and timestamps
  • Current offer state and execution details
get/block-trades/{block_trade_id}/offers

Path parameters

block_trade_idstring required

Parent Block Trade ID

Response

OK

Example response

{
  "results": [
    {
      "block_expiration": 1640995800000,
      "block_id": "block_456",
      "created_at": 1640995200000,
      "initiator": "0x123...abc",
      "last_updated_at": 1640995400000,
      "nonce": "67890",
      "parent_block_id": "block_123"
    }
  ]
}