cURL
curl --request GET \
--url https://app.teable.ai/api/auth/user/me \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'{
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"notifyMeta": {
"email": true
},
"hasPassword": true,
"avatar": "<string>",
"phone": "<string>",
"isAdmin": true,
"lang": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"departments": [
{
"id": "<string>",
"name": "<string>"
}
],
"isAdmin": true
}
}auth
Get authuserme
Get user information
GET
/
auth
/
user
/
me
cURL
curl --request GET \
--url https://app.teable.ai/api/auth/user/me \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'{
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"notifyMeta": {
"email": true
},
"hasPassword": true,
"avatar": "<string>",
"phone": "<string>",
"isAdmin": true,
"lang": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"departments": [
{
"id": "<string>",
"name": "<string>"
}
],
"isAdmin": true
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
200 - application/json
Successfully retrieved user information
Last modified on March 5, 2026
Was this page helpful?
⌘I

