{% extends "docs/base.html" %} {% block docs_content %}
Fetch your user record by username.
GET /api/v1/users/{username}curl \
--header "Authorization: Bearer $PEARING_API_TOKEN" \
"$PEARING_API_URL/v1/users/alice"200 OK with user record. The email field is only returned on these gated self/staff views.
{
"uuid": "...",
"username": "alice",
"email": "<private>",
"activity": "",
"activity_updated_at": null
}404 Not Found when username does not exist.Common auth errors are documented on the API overview page.