Get current account info
GET /auth/me
GET
/auth/me
Returns the authenticated account’s profile. Requires a valid JWT token.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”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
Example
Jane Developer plan
required
string
Example
trial created_at
required
string format: date-time
Example
2026-02-10T12:00:00.000ZAuthentication failed or missing
object
error
required
object
code
required
Machine-readable error code
string
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" }}