The Platform Status endpoint returns the current health of all components across the Kushki and BillPocket platforms in a single response. Use it to display a status page, trigger alerts, or gate payment flows when a platform is degraded.This endpoint is publicly accessible — no API key or merchant credentials are required.
How it works#
Call GET /data/status at any time. The response contains two arrays — one for each platform — where each element describes a component's current status, its uptime for the reported date range, and incident counters.
Response structure#
{
"kushki": [
{
"name": "Payment Processing",
"status": "operational",
"position": 1,
"group": false,
"showcase": true
}
],
"billpocket": [
{
"name": "Card Reader",
"status": "degraded_performance",
"position": 1,
"group": false,
"showcase": true
}
]
}
| Field | Description |
|---|
kushki | Array of Kushki platform components and their current operational status. |
billpocket | Array of BillPocket platform components and their current operational status. |
Component status values#
| Status | Meaning |
|---|
operational | Component is fully functional. |
degraded_performance | Component is operating but with reduced performance or elevated error rates. |
partial_outage | Component is partially unavailable. |
major_outage | Component is fully unavailable. |
under_maintenance | Component is undergoing planned maintenance. |
Using the API#
https://api.kushkipagos.com/
Available Endpoints#
Get Platform Status
Returns real-time operational status for all components of the Kushki and BillPocket platforms. No authentication required.
Got a suggestion on this documentation? Contact us.