Skip to main content
GET
/
api
/
auth
/
me
Get current user
curl --request GET \
  --url https://app.demand-iq.com/api/auth/me \
  --cookie session=
{
  "user": {
    "id": "<string>",
    "email": "jsmith@example.com",
    "name": "<string>"
  },
  "organization": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>"
  }
}

Authorizations

session
string
cookie
required

Session cookie obtained from POST /api/auth/login.

Response

Current user

user
object
organization
object