Skip to main content
POST
/
identity
/
identify
Identify user (JWT)
curl --request POST \
  --url https://platform.agentictrust.com/api/v1/identity/identify \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "token": "<string>"
}
'
{
  "verified": true,
  "user": {
    "id": "<string>",
    "email": "<string>",
    "name": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

API key in lum_pk_* format. Pass via x-api-key header or Authorization: Bearer <key>.

Body

application/json
token
string
required

JWT signed with the project's HMAC secret.

Response

Token valid. End user upserted.

verified
boolean
Example:

true

user
object