Skip to main content
GET
/
modules
List modules
curl --request GET \
  --url http://localhost:9371/modules
{
  "modules": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "isBuiltin": true,
      "enabled": true,
      "missing": true
    }
  ]
}

Query Parameters

query
string

Free-text query used to match module names and descriptions.

type
enum<string>

Module type. Either 'adapter' or 'environment'.

Available options:
adapter,
environment
isBuiltin
enum<string>

Filter by whether the module is bundled with the API.

Available options:
true,
false
enabled
enum<string>

Enabled-state filter for modules.

Available options:
true,
false
missing
enum<string>

Filter by whether the module is missing its factory.

Available options:
true,
false

Response

Matching modules.

Collection wrapper for module listings.

modules
object[]
required

Modules that match the supplied query filters.

Last modified on July 1, 2026