Getting a list of invoices
Last updated
Last updated
The method allows you to get a list of invoices
Public API-key
Signing the request body with a private API-key
Request content type
application/json
Request body for getting a list of invoices
Number of elements per page
Number of items to skip
POST /api-gateway/get-invoices HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 40
{
"status": [
"INIT"
],
"limit": 1,
"offset": 1
}
{
"success": true,
"response": {
"invoices": [
{
"id": "1048bbf6-be3f-4573-b23f-a4693418348e",
"externalId": "merchantExternalId123",
"externalUserId": "10099",
"payerEmail": "site@domain.com",
"orderId": "81b47dd6-b0b8-4f05-bcf8-ed58049aec5b",
"orderLink": "https://payment.domain/81b47dd6-b0b8-4f05-bcf8-ed58049aec5b",
"invoiceLink": "https://invoices.domain/1048bbf6-be3f-4573-b23f-a4693418348e",
"status": "INIT",
"order": "Order #123456",
"description": "Payment by order #123456",
"currency": "USD",
"amount": "20",
"receivedNetwork": "USDT",
"receivedCurrency": "USDT",
"receivedAmount": "100.32",
"receivedAmountInInvoiceCurrency": "100.94",
"rate": "100.32",
"includeFee": true,
"additionalFees": [
"SEPA_WITHDRAWAL"
],
"insurancePercent": "1",
"slippagePercent": "2",
"paymentTolerancePercent": "1.5",
"webhookURL": "https://merchant.domain/webhooks/invoice",
"returnUrl": "https://merchant.domain/",
"expiresAt": "2025-06-09T13:18:59.428Z",
"createdAt": "2025-06-09T13:18:29.428Z",
"currencies": [
{
"currency": "USDT",
"networks": [
{
"name": "ethereum",
"amount": "25"
}
]
}
]
}
],
"total": "900"
}
}