Skip to main content
GET
/
api
/
user
/
current
Identity check
curl --request GET \
  --url https://app.auditynow.com/api/user/current \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "userId": "user_2abc123XYZ",
  "userEmail": "consultant@example.com",
  "authMethod": "pat",
  "authData": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.auditynow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Personal Access Token issued from https://app.auditynow.com/dashboard/settings/api-tokens. Format: aky_<32 random chars>.

Response

Authenticated user identity

userId
string
required

Clerk user ID.

success
boolean
userEmail
string<email> | null
authMethod
string

Internal: which auth path was used. pat for PAT-authenticated requests, clerk for browser sessions.

authData
object

Internal diagnostic payload.