Documentation Index Fetch the complete documentation index at: https://docs.accelebit.com/llms.txt
Use this file to discover all available pages before exploring further.
Use this endpoint to fetch the current state of a payment using its UUID. The response includes the full transaction record: status, amount, currency, the upstream provider that processed it, and error details if the payment failed. Payments are scoped to your merchant account — you can only retrieve payments created with your API key.
Path parameters
UUID of the payment to retrieve.
Your secret API key. Starts with smtgw_sk_.
Response
Your merchant account ID.
UUID of the Accelebit customer record associated with this payment.
The upstream provider that processed the payment. null if the payment has not yet been submitted to a provider.
Current transaction status. One of: created, captured, authorized, pending_3ds, pending_consent, failed.
Payment amount as a decimal string. For example: "55.00".
Three-letter ISO 4217 currency code.
Your merchant reference, if you provided one when creating the payment. null otherwise.
Error code if the payment failed. null on success.
Human-readable error message if the payment failed. null on success.
ISO 8601 timestamp of when the payment was created.
ISO 8601 timestamp of the last status update.
curl https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479 \
-H "X-API-Key: smtgw_sk_test_your_secret_key"
200 - Success
404 - Not Found
{
"data" : {
"id" : "f47ac10b-58cc-4372-a567-0e02b2c3d479" ,
"merchantId" : "merchant_abc123" ,
"customerId" : "a1b2c3d4-e5f6-7890-abcd-ef1234567890" ,
"providerId" : "everest" ,
"status" : "captured" ,
"amount" : "55.00" ,
"currency" : "EUR" ,
"paymentMethod" : "card" ,
"merchantRef" : "order_98765" ,
"errorCode" : null ,
"errorMessage" : null ,
"createdAt" : "2026-04-09T12:01:00.000Z" ,
"updatedAt" : "2026-04-09T12:01:02.000Z"
},
"meta" : {
"timestamp" : "2026-04-09T12:05:00.000Z"
}
}