Users
v1
Get Current User
Retrieves the identity of the current API user - a "whoami" endpoint. Unlike most endpoints, this one does not require the account_id query parameter — the user's identity is independent of the account they are currently working on.
get/v1/users/me
Response
Success
Example response
{
"data": {
"type": "user",
"id": "123456",
"attributes": {
"email": "info@leadfeeder.com",
"first_name": "Jane",
"last_name": "Smith",
"phone_number": "+49 721 50057501",
"country_code": "DE",
"team_role": "admin"
}
},
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}