GET
https://api.wazapin.id
/
v1
/
auth
/
me
Get current authenticated user
curl --request GET \
  --url https://api.wazapin.id/v1/auth/me \
  --header 'X-Api-Key: <api-key>'

Endpoint

GET /v1/auth/me Returns profile data for the current authenticated user.

Authentication

Use X-Api-Key header.
curl -X GET "https://api.wazapin.id/v1/auth/me" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Accept: application/json"
200 OK
{
  "data": {
    "id": "a6c8ca86-2f29-4fe6-a077-1e56cb4ec2f2",
    "name": "Demo User",
    "email": "user@example.com"
  }
}
401 Unauthorized
{
  "title": "Unauthorized",
  "status": 401,
  "detail": "missing or invalid credentials"
}