For the complete documentation index, see llms.txt. This page is also available as Markdown.

List plan feature access

List which plan features the profile can use.

List plan feature access

get

List which plan features the profile can use.

This is the feature lock matrix, not a usage quota. available means the feature can be used right now and locked means it is not part of the base plan, so an upgrade is needed. For remaining emails, recipients and AI credits use the limits endpoint instead.

Worth checking before building something that cannot be activated afterwards, such as an automation on a plan without automation activation.

Authorizations
AuthorizationstringRequired

API Token authentication

Path parameters
profileUuidstringRequired

Profile uuid parameter

Example: 550e8400-e09b-41d4-a716-400055000000
Responses
200

Success response

application/json
featurestring · enumOptionalExample: AutomationActivationPossible values:
is_availablebooleanOptional

Whether the feature can be used right now.

Example: true
is_lockedbooleanOptional

Whether the feature sits outside the base plan and needs an upgrade.

Example: false
get/api/reach/v1/profiles/{profileUuid}/features
GET /api/reach/v1/profiles/{profileUuid}/features HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "feature": "AutomationActivation",
    "is_available": true,
    "is_locked": false
  }
]

Last updated

Was this helpful?