Authentication
Your ClearProxy API key (format: clearpx_yourkey)
Alternatively, you can use Bearer token authentication:
Bearer token (format: Bearer clearpx_yourkey)
Example Request
curl https://api.clearproxy.io/me \
-H "X-API-Key: clearpx_yourkey"
Response
User account information
Breakdown of available checks
Temporary promotional balance
Array of recent check operations
Usage statistics for the last 30 days
{
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "user@example.com",
"checks": 5000,
"balance_breakdown": {
"root_balance": 3000,
"temp_balance": 2000
}
},
"history": [...],
"usage_last_30_days": [...]
}