Skip to main content
GET
/
api
/
v1
/
debug
/
enabled-functions
Get Enabled Functions
curl --request GET \
  --url http://localhost:8000/api/v1/debug/enabled-functions \
  --header 'Authorization: Bearer <token>'
{
  "functions": [
    {
      "name": "<string>",
      "parameters": [
        {
          "name": "<string>",
          "has_default": true,
          "kind": "<string>",
          "type_annotation": "<string>",
          "default_value": "<string>"
        }
      ],
      "docstring": "<string>",
      "return_annotation": "<string>"
    }
  ],
  "total_count": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

Schema for enabled functions inspection response.

functions
FunctionInfo · object[]
required

List of enabled functions with their parameters

total_count
integer
required

Total number of enabled functions