Identify the Caller
Return the access key and organization associated with a request.
GET /v1/whoami verifies an access key and returns its identity.
curl http://localhost:3001/v1/whoami \
-H "x-access-key: YOUR_ACCESS_KEY"{
"accessKeyId": "key_123",
"organizationId": "org_123"
}The endpoint returns 401 when the key is missing, invalid, or revoked.