Skip to content

Get Health

An endpoint used to verify the availability and operational status of the API service. It allows monitoring systems, load balancers, and clients to quickly determine whether the service is running and able to accept requests.

Health check

Transaction POST Header and Query Parameters!

Request Samples

curl
    -L -X GET 'https://test-api.billeroo.com/health' \
    -H 'Authorization: {integratorToken}' \
    -H 'Content-Type: application/json' \


200 Successful Response

Get Health Success!

403 Forbidden

Get Health 403 Forbidden!

401 Unauthorized Request

Pay Bills 422 Erroneous Response Parameters!

Response Samples

{
    "timestamp": "2026-02-11 11:24:16.632 +0000",
    "status": 200,
    "message": "OK",
    "path": "/health" 
    }
{
    "timestamp": "2026-02-11 11:10:37.218 +0000",
    "status": 403,
    "error": "Forbidden",
    "messages": "Access Denied",
    "path": "/health"    
    },
{
    "timestamp": "2026-02-11 11:10:37.218 +0000",
    "status": 401,
    "error": "Unauthorized",
    "path": "/health"
}