Health
GET
/v1/healthFreeReturns a confirmation that your API key is valid and shows your current credit balance. Use this to verify your integration before making paid requests.
Request
No request body. Just the Authorization header:
Authorization: Bearer gfp_live_YOUR_KEY
Response
{
"ok": true,
"customerId": "3e4f5a6b-7c8d-9e0f-a1b2-c3d4e5f6a7b8",
"apiKeyId": "k_9a8b7c6d5e4f3a2b1c0d",
"balance": 1000,
"timestamp": "2026-06-14T10:32:20.235Z"
}
| Field | Type | Description |
|---|---|---|
| ok | boolean | Always true on success |
| customerId | string | Your account UUID |
| apiKeyId | string | The key that made this request |
| balance | number | Current credit balance |
| timestamp | string | Server time in ISO 8601 |