Getting Started
Implementation Guides
API Reference
Sender
List payment orders
GET
/
sender
/
orders
Copy
Ask AI
{
"total": 123,
"page": 123,
"pageSize": 123,
"orders": [
{
"id": "<string>",
"amount": 123,
"amountPaid": 123,
"amountReturned": 123,
"token": "<string>",
"senderFee": 123,
"transactionFee": 123,
"rate": 123,
"network": "base",
"gatewayId": "<string>",
"recipient": {
"institution": "<string>",
"accountIdentifier": "<string>",
"accountName": "<string>",
"memo": "<string>",
"providerId": "<string>",
"metadata": {},
"currency": "<string>"
},
"fromAddress": "<string>",
"returnAddress": "<string>",
"receiveAddress": "<string>",
"reference": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"txHash": "<string>",
"status": "<string>",
"transactionLogs": [
{
"id": "<string>",
"gateway_id": "<string>",
"status": "<string>",
"tx_hash": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
]
}
Authorizations
Query Parameters
Network identifier for the blockchain
Available options:
base
, bnb-smart-chain
, lisk
, tron
, celo
, arbitrum-one
, polygon
, asset-chain
Response
200 - application/json
List of payment orders
The response is of type object
.
Copy
Ask AI
{
"total": 123,
"page": 123,
"pageSize": 123,
"orders": [
{
"id": "<string>",
"amount": 123,
"amountPaid": 123,
"amountReturned": 123,
"token": "<string>",
"senderFee": 123,
"transactionFee": 123,
"rate": 123,
"network": "base",
"gatewayId": "<string>",
"recipient": {
"institution": "<string>",
"accountIdentifier": "<string>",
"accountName": "<string>",
"memo": "<string>",
"providerId": "<string>",
"metadata": {},
"currency": "<string>"
},
"fromAddress": "<string>",
"returnAddress": "<string>",
"receiveAddress": "<string>",
"reference": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"txHash": "<string>",
"status": "<string>",
"transactionLogs": [
{
"id": "<string>",
"gateway_id": "<string>",
"status": "<string>",
"tx_hash": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.