Skip to content

Get current account info

GET
/auth/me

Returns the authenticated account’s profile. Requires a valid JWT token.

Account info retrieved

object
data
required
object
id
required

Account ID

string
Example
acc_a1b2c3d4e5
email
required
string format: email
Example
dev@example.com
name
string
nullable
Example
Jane Developer
plan
required
string
Allowed values: trial starter pro scale
Example
trial
created_at
required
string format: date-time
Example
2026-02-10T12:00:00.000Z

Authentication failed or missing

object
error
required
object
code
required

Machine-readable error code

string
Allowed values: VALIDATION_ERROR AUTHENTICATION_ERROR NOT_FOUND CONFLICT RATE_LIMIT_EXCEEDED USAGE_LIMIT_EXCEEDED EXTERNAL_SERVICE_ERROR INTERNAL_ERROR
Example
VALIDATION_ERROR
message
required

Human-readable error message

string
Example
Invalid request body
details

Additional error details (e.g., validation issues)

object
key
additional properties
any
Example
{
"error": {
"code": "AUTHENTICATION_ERROR",
"message": "Invalid or missing API key"
}
}