Skip to main content
GET
/
auth
/
whoami
Whoami
curl --request GET \
  --url https://api.streamkap.com/auth/whoami \
  --header 'Authorization: Bearer <token>'
{
  "tenant_id": "<string>",
  "service_id": "<string>",
  "sub": "<string>",
  "token_type": "<string>",
  "project_key_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

Verified caller identity returned by GET /auth/whoami.

tenant_id
string
required
service_id
string
required
sub
string
required
token_type
string
required
project_key_id
string | null