๐Ÿ”ฅGodFocus Platformยท Docs
โ† HomeDashboard โ†’

Health

GET/v1/healthFree

Returns 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"
}
FieldTypeDescription
okbooleanAlways true on success
customerIdstringYour account UUID
apiKeyIdstringThe key that made this request
balancenumberCurrent credit balance
timestampstringServer time in ISO 8601

Example

curl https://platform.godfocus.io/v1/health \
  -H "Authorization: Bearer $GODFOCUS_API_KEY"