Invoice information request
Last updated
Last updated
The method allows you to get information about the invoice
Public API-key
Signing the request body with a private API-key
Request content type
application/json
The body of the request for obtaining information about the invoice
Invoice ID
1048bbf6-be3f-4573-b23f-a4693418348e
POST /api-gateway/get-invoice HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 52
{
"invoiceId": "1048bbf6-be3f-4573-b23f-a4693418348e"
}
{
"success": true,
"response": {
"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"
}
]
}
]
}
}