GET /api/v1/users/me
Return the profile for the currently authenticated user.
Response
UUID of the user account.
Account email address.
Display name.
null if not set.Whether the account is active.
Account role. Returns
"user" for standard accounts.Current subscription tier:
"developer" or "pro".Subscription lifecycle status:
"active", "inactive", "past_due", etc.ISO 8601 timestamp when the current billing period ends.
null for free/developer accounts.Non-expiring credit balance.
Last four characters of your API key.
null if no key has been generated.Your unique referral code.
Example
cURL
Response
PATCH /api/v1/users/me
Update your profile. Only the fields you include are changed.
Request body
New display name. Maximum 255 characters.
New email address. Returns
409 Conflict if the address is already in use.Response
Returns the updated user profile in the same shape asGET /api/v1/users/me.
Example
cURL
Response