Get Payments Status
Retrieves the payment status of a specific order using its unique order ID.
GET
/payment/statusAuthentication
Authorization: Bearer <YOUR_API_key>
Request Parameters
| Field | Type | Description | Required |
|---|---|---|---|
payment_id | string | The unique id of the payment order. | ✅ |
Response Fields
- 200
- 400
- 401
{
"status": "PENDING",
"data": {
"id": 0,
"Amount": 0,
"currency": "string",
"customer": "string",
"product": "string",
"hook_url": "string",
"status": "PENDING"
}
}
{
"detail": "Bad Request"
}
{
"detail": "Unauthorized Bearer token"
}
Request Samples
curl -X GET https://luxfin.org/payment/status?payment_id=0 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \