Cliquify Developer
  1. User
  • Overview
    • Getting started
  • other
    • Integrations
    • Appendix
      • OAuth Scopes
      • Error Responses
    • Templates
      • Get Tags
      • Get Templates
    • User
      • Get Authenticated User
        GET
    • Authentication
      • Overview
      • Generate Access Token
      • Introspect Access Token
      • Revoke Token
    • Get Brand Assets
      GET
  • Authentication
    • Overview
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  1. User

Get Authenticated User

Developing
GET
{{baseUrl}}api/user
Retrieve the authenticated user profile using an access_token. Commonly used to confirm identity after login or fetch user metadata.

Request

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}api/user' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Response Response Example
{
  "id": 1,
  "name": "John Doe",
  "email": "john@example.com",
  "created_at": "2023-07-04T12:34:56Z"
}
Modified at 2026-04-08 11:49:55
Previous
Get Templates
Next
Overview
Built with