Returns whether the tenant’s active plan includes the requested feature key.
Query Parameters
Your public key (pk_live_...)
The feature key to check (must match a key in plan.features)
The external tenant ID from your application
Response
Whether the tenant can access the feature
The feature key that was checked
The tenant ID that was checked
curl "https://api.crovver.com/api/public/can-access?publicKey=pk_live_...&featureKey=advanced_analytics&requestingEntityId=workspace_123"
{
"success": true,
"data": {
"canAccess": true,
"featureKey": "advanced_analytics",
"requestingEntityId": "workspace_123"
}
}