v1

latestOpenAPI 3.0.2cPanel License2026-08-06657427.1 MB
Features
cPanel Features

Return queried cPanel account features

This function allows you to search for enabled cPanel account features and lists those features in the returned payload.

get/Features/list_features_like

Query parameters

patternstring required
Example:mail

The feature's name that you wish to search.

Note:

To use a regular expression, you must set the is_regex parameter's value to true.

is_regex0 | 1

Whether the pattern parameter's value is a regular expression.

  • 1 - The pattern parameter's value is a regular expression.
  • 0 - The pattern parameter's value is not a regular expression

Response

HTTP Request was successful.

apiversioninteger

The version of the API.

funcstring

The name of the method called.

modulestring

The name of the module called.

Example response

{
  "apiversion": 3,
  "func": "list_features_like",
  "module": "Features",
  "result": {
    "data": [
      "webmail",
      "emailauth"
    ],
    "status": 1
  }
}