Path parameters
UUID of the payment to retrieve.
Headers
Your secret API key. Starts with
smtgw_sk_.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fetch the current status and full details of a payment by its UUID. Returns amount, currency, provider, status, and error info if the payment failed.
smtgw_sk_.Show data properties
null if the payment has not yet been submitted to a provider.created, captured, authorized, pending_3ds, pending_consent, failed."55.00"."card" or "stored_card".null otherwise.null on success.null on success.curl https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479 \
-H "X-API-Key: smtgw_sk_test_your_secret_key"
const response = await fetch(
'https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479',
{
headers: {
'X-API-Key': process.env.ACCELEBIT_SECRET_KEY!,
},
}
);
const result = await response.json();
import requests
response = requests.get(
'https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479',
headers={'X-API-Key': ACCELEBIT_SECRET_KEY},
)
result = response.json()
{
"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"
}
}
{
"data": null,
"error": {
"status": 404,
"name": "NOT_FOUND",
"message": "Transaction f47ac10b-58cc-4372-a567-0e02b2c3d479 not found"
}
}
curl https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479 \
-H "X-API-Key: smtgw_sk_test_your_secret_key"
const response = await fetch(
'https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479',
{
headers: {
'X-API-Key': process.env.ACCELEBIT_SECRET_KEY!,
},
}
);
const result = await response.json();
import requests
response = requests.get(
'https://api.gateway.accelebit.com/v1/payments/f47ac10b-58cc-4372-a567-0e02b2c3d479',
headers={'X-API-Key': ACCELEBIT_SECRET_KEY},
)
result = response.json()
{
"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"
}
}
{
"data": null,
"error": {
"status": 404,
"name": "NOT_FOUND",
"message": "Transaction f47ac10b-58cc-4372-a567-0e02b2c3d479 not found"
}
}