Getting Started
Implementation Guides
API Reference
Sender
Get lock payment order status
GET
/
orders
/
{chain_id}
/
{id}
Copy
Ask AI
{
"orderId": "<string>",
"amount": 123,
"token": "<string>",
"network": "base",
"settlePercent": 123,
"status": "<string>",
"txHash": "<string>",
"settlements": [
{
"splitOrderId": "<string>",
"amount": 123,
"rate": 123,
"orderPercent": 123
}
],
"txReceipts": [
{
"status": "<string>",
"txHash": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
Authorizations
Response
200 - application/json
Order status
The response is of type object
.
Copy
Ask AI
{
"orderId": "<string>",
"amount": 123,
"token": "<string>",
"network": "base",
"settlePercent": 123,
"status": "<string>",
"txHash": "<string>",
"settlements": [
{
"splitOrderId": "<string>",
"amount": 123,
"rate": 123,
"orderPercent": 123
}
],
"txReceipts": [
{
"status": "<string>",
"txHash": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.