Skip to main content
POST
/
api
/
v1
/
auth
/
verify
Verify:Verify
curl --request POST \
  --url https://api.cognee.ai/api/v1/auth/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "token": "<string>"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "jsmith@example.com",
"is_active": true,
"is_superuser": false,
"is_verified": false,
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
token
string
required

Response

Successful Response

id
string<uuid>
required
email
string<email>
required
is_active
boolean
default:true
is_superuser
boolean
default:false
is_verified
boolean
default:false
tenant_id
string<uuid> | null
I