Skip to content

Get API key owner profile

Returns the profile of the user that owns the API key you authenticated with. Useful to verify a key after collingo login or in your own tooling.

GET /api/v1/info

AuthRequired (Authorization: Bearer <apiKey>)
Path parametersNone
Query parametersNone
BodyNone
Authorization: Bearer <your-api-key>
Terminal window
curl -sS https://collingo.app/api/v1/info \
-H "Authorization: Bearer <your-api-key>"
{
"id": "cluser0123456789abcdefgh",
"email": "you@example.com",
"firstName": "Ada",
"lastName": "Lovelace",
"locale": "en-US",
"timezone": "Europe/Berlin"
}
StatusWhen
401Missing or invalid API key (ERR_UNAUTHORIZED)
404User not found (ERR_SETTINGS_PROFILE_USER_NOT_FOUND)
500Database or internal error