Skip to content

GET User Profile

GET /me

Returns the authenticated user’s profile. Useful as a health check to confirm a token works.

Request:

Terminal window
curl https://nuelink.com/api/public/v1/me
-H "Authorization: Bearer YOUR_API_KEY"
{
"status": "success",
"data": {
"id": "7860a8ed7591c8eff18659a55b3e80e8",
"name": "Maya Holloway",
"joinedAt": "2022-05-23T23:55:51.000000Z",
"timezone": "Europe/London"
}
}
FieldTypeDescription
idstringOpaque user identifier.
namestringDisplay name on the Nuelink account.
joinedAtstringISO 8601 timestamp of account creation.
timezonestringIANA timezone name (e.g. Europe/London).