GET
/
payments
/
status
cURL
curl --request GET \
  --url https://api-test.klyme.io/api/v1/payments/status \
  --header 'Authorization: Basic <encoded-value>'
{
  "processingTime": "2025-07-23 18:32:26",
  "uuid": "ce1797873467e1bbddda9f99c42f126a",
  "merchantUuid": "xfe3539cb23ad9731be57905b8a0c099",
  "amount": 10.99,
  "currency": "GBP",
  "reference": "1A2B3C4D",
  "result": {
    "status": 1,
    "statusCode": "ACCC",
    "description": "COMPLETED",
    "institution": "monzo_ob",
    "redirectUrl": "https://your-redirect-url.com"
  },
  "customer": {
    "ip": "16.126.433.250",
    "dob": null,
    "city": "Manchester",
    "email": "[email protected]",
    "phone": null,
    "gender": null,
    "mobile": null,
    "company": null,
    "country": "GB",
    "surname": null,
    "address1": null,
    "address2": null,
    "postcode": null,
    "firstName": null,
    "payeeIban": null,
    "payeeName": null,
    "customerId": null,
    "middleName": null,
    "payeeAccNum": null,
    "payeeSortCode": null
  },
  "cart": {
    "items": [],
    "affiliateId": null,
    "discountCode": null
  },
  "device": {
    "deviceOs": "iOS",
    "deviceName": "iPhone",
    "deviceToken": "nTW220MaiBjonNLoox2k",
    "deviceBrowser": "Mobile Safari",
    "deviceIsMobile": 1,
    "deviceOsVersion": "18.5",
    "deviceBrowserVersion": "18.5"
  },
  "customParameters": {
    "custom1": null,
    "custom2": null,
    "custom3": null,
    "custom4": null,
    "custom5": null,
    "customJson": null
  }
}
Once a payment is executed, its full payload, including its status can be retrieved using this endpoint.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

uuid
string

The uuid of the payment you would like to query.

Required string length: 32

Response

200 - application/json

Get payment status response

The response is of type object.