## Authentication `GET https://getkollek.com/api/me` Authenticate every request with a bearer token in the Authorization header. Get a token by registering or logging in through the API, or create one from your profile settings, under API keys. Tokens do not expire, but you can revoke them at any time from your profile or through the API keys endpoints. If two-factor authentication is enabled on your user, the login endpoint also requires a valid TOTP or recovery code. ### Example request ```bash curl https://getkollek.com/api/me \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "user", "id": "1", "attributes": { "first_name": "Monica", "last_name": "Geller", "nickname": "Mon", "email": "monica@example.com", "locale": "en", "time_format_24h": true }, "links": { "self": "https://getkollek.com/api/me" } } } ```