Websocket REST (Get) REST (Post)
Connect
WEBSOCKET [GATEWAY_WEBSOCKET_ENDPOINT]
Message
Copy {
"type": "order",
"product_id": 1,
"digest": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
GET [GATEWAY_REST_ENDPOINT]/query?type=order&product_id={product_id}&digest={digest}
POST [GATEWAY_REST_ENDPOINT]/query
Body
Copy {
"type": "order",
"product_id": 1,
"digest": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
Copy {
"status": "success",
"response": {
"product_id": 1,
"sender": "0x7a5ec2748e9065794491a8d29dcf3f9edb8d7c43000000000000000000000000",
"price_x18": "1000000000000000000",
"amount": "1000000000000000000",
"expiration": "2000000000",
"nonce": "1",
"unfilled_amount": "1000000000000000000",
"digest": "0x0000000000000000000000000000000000000000000000000000000000000000",
"placed_at": 1681951347,
"order_type": "ioc"
},
"request_type": "query_order",
}