Skip to main content

Get Payments Status

Retrieves the payment status of a specific order using its unique order ID.

GET/payment/status

Authentication

Authorization: Bearer <YOUR_API_key>

Request Parameters

FieldTypeDescriptionRequired
payment_idstringThe unique id of the payment order.

Response Fields

{
  "status": "PENDING",
  "data": {
    "id": 0,
    "Amount": 0,
    "currency": "string",
    "customer": "string",
    "product": "string",
    "hook_url": "string",
    "status": "PENDING"
  }
}

Request Samples

    curl -X GET https://luxfin.org/payment/status?payment_id=0 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \