cURL
curl --request GET \ --url https://api.getlago.com/api/v1/features/{code} \ --header 'Authorization: Bearer <token>'
{ "feature": { "code": "seats", "name": "Number of seats", "description": "Number of users of the account", "privileges": [ { "code": "max", "name": "Maximum", "value_type": "integer", "config": {} }, { "code": "max_admins", "name": "Max Admins", "value_type": "integer", "config": {} }, { "code": "root", "name": "Allow root user", "value_type": "boolean", "config": {} }, { "code": "provider", "name": "SSO Provider", "value_type": "select", "config": { "select_options": [ "google", "okta" ] } } ], "created_at": "2025-07-17T12:34:35Z" } }
This endpoint retrieves an existing feature that represents an entitlement component of your application. The feature is identified by its unique code.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Code of the existing feature.
"seats"
Feature
Show child attributes
Was this page helpful?