GET /auth/me

Retrieve information about the currently authenticated API client

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • clientId string Required

      Client identifier

    • expiresAt integer Required

      Token expiration timestamp

  • 401

    Unauthorized

GET /auth/me
curl \
 --request GET 'https://api.thankly.ai/auth/me' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "clientId": "string",
  "expiresAt": 1735689600
}