Pay
Check Payment
Check whether a user has completed payment for a specific item.
POST
/api/pay/check_payment.php
Requires
Authorization: AppID:AppKey + user tokenRequest body
| Field | Type | Required | Description |
|---|---|---|---|
| token | string | required | User session token |
| itemKey | string | required | Product key to check |
Test this endpoint
Headers
Body
Success response 200
{
"success": true,
"payment_found": true,
"payment_details": {
"payment_id": 101,
"payment_hash": "hash_unique",
"itemKey": "abc123def456",
"quantity": 1,
"payment_status": "paid",
"payment_date": "2025-05-10 14:32:00",
"release_status": "released",
"price": 2990
}
}