> ## Documentation Index
> Fetch the complete documentation index at: https://developer.quickei.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Payment Status

> Query the status of a payment

Checks the status of a payment transaction.

## Parameters

<ParamField query="token" type="string" required>
  The payment token returned from the initiate payment endpoint
</ParamField>

## Response — 200 OK

```json theme={null}
{
  "message": {
    "code": 200,
    "success": ["SUCCESS"]
  },
  "data": {
    "token": "2zMRmT3KeYT2BWMAyGhq...",
    "trx_id": "BP2c7sAvw75MTlrP",
    "payer": {
      "username": "testuser",
      "email": "user@example.com"
    },
    "custom": "123456789ABCD"
  },
  "type": "success"
}
```
