Validate current API key
GET/v1/auth/validate
Returns metadata for the current API key, including the subject type and granted public scopes. Use this endpoint to confirm a key is active before making scoped API requests.
Required scope: None
Rate limit category: Read
Validate current API key
curl https://api.lightfield.app/v1/auth/validate \
-H 'Lightfield-Version: 2026-03-01' \
-H "Authorization: Bearer $API_KEY"{
"active": true,
"scopes": [
"string"
],
"subjectType": "user",
"tokenType": "api_key"
}Returns Examples
{
"active": true,
"scopes": [
"string"
],
"subjectType": "user",
"tokenType": "api_key"
}