Orders API
Overview
Endpoints
Get Orders
Authorization: Bearer <jwt_token>{
"success": true,
"data": {
"orders": [
{
"id": "12345",
"type": "mint",
"status": "completed",
"sourceChain": "sol",
"destinationChain": "base",
"token": "SOL",
"amount": "1500000000",
"sourceWallet": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"destinationWallet": "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b1",
"workflowId": "mint-workflow-abc123",
"transactionHash": "0xabcdef1234567890...",
"errorMessage": null,
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:32:45.000Z"
},
{
"id": "12344",
"type": "burn",
"status": "processing",
"sourceChain": "base",
"destinationChain": "xrp",
"token": "uXRP",
"amount": "5000000000000000000",
"sourceWallet": "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b1",
"destinationWallet": "rN7n7otQDd6FczFgLdlqtyMVUXWqzp1GE1",
"workflowId": "burn-workflow-xyz789",
"transactionHash": null,
"errorMessage": null,
"createdAt": "2025-01-15T10:25:00.000Z",
"updatedAt": "2025-01-15T10:26:30.000Z"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 47,
"hasMore": true
}
}
}Order Fields
Basic Information
Chain and Token Details
Amount and Addresses
Processing Details
Order Statuses
Status
Description
Next Step
Order Lifecycle
Mint Order Lifecycle
Burn Order Lifecycle
Pagination
Filtering
Filter by Type
Filter by Status
Combine Filters
Polling for Updates
Error Messages
Mint Errors
Error Message
Cause
Resolution
Burn Errors
Error Message
Cause
Resolution
Best Practices
Next Steps
Last updated