Skip to main content
GET
https://api.clearproxy.io
/
me
Get User Info
curl --request GET \
  --url https://api.clearproxy.io/me \
  --header 'X-API-Key: <x-api-key>'
{
  "user": {
    "email": "[email protected]",
    "checks_used": 1,
    "remaining_checks": 10938392,
    "subscription_detail": {
      "UnlimitedPro": false
    },
    "breakdown": {
      "root_balance": 10938392,
      "temp_balance": 0
    }
  },
  "history": [],
  "usage_last_30_days": []
}

Authentication

X-API-Key
string
required
Your ClearProxy API key (format: clearpx_yourkey)
Alternatively, you can use Bearer token authentication:
Authorization
string
Bearer token (format: Bearer clearpx_yourkey)

Example Request

curl https://api.clearproxy.io/me \
  -H "X-API-Key: clearpx_yourkey"

Response

user
object
User account information
history
array
Array of recent check operations
usage_last_30_days
array
Usage statistics for the last 30 days
{
  "user": {
    "email": "[email protected]",
    "checks_used": 1,
    "remaining_checks": 10938392,
    "subscription_detail": {
      "UnlimitedPro": false
    },
    "breakdown": {
      "root_balance": 10938392,
      "temp_balance": 0
    }
  },
  "history": [],
  "usage_last_30_days": []
}