# List every Slack module available in Make.com

**Use case:** 

Exports every Slack module Make offers, across all three app versions, with the kind of each module, whether the trigger is instant, which modules support Rollback, which are deprecated, and the Slack connection and OAuth scopes each one needs. Change the Apps field to any other app name. Paste a Make API token to run it on your account.

## Input

```json
{
  "makeZone": "eu1",
  "apps": [
    "slack"
  ],
  "moduleKinds": [],
  "includeConnections": true,
  "harvestTemplates": false,
  "maxModules": 0
}
```

## Output

```json
{
  "moduleType": {
    "label": "Module",
    "format": "string"
  },
  "moduleLabel": {
    "label": "Label",
    "format": "string"
  },
  "kind": {
    "label": "Kind",
    "format": "string"
  },
  "appLabel": {
    "label": "App",
    "format": "string"
  },
  "appVersion": {
    "label": "App version",
    "format": "integer"
  },
  "isInstant": {
    "label": "Instant",
    "format": "boolean"
  },
  "instantAlternatives": {
    "label": "Instant alternatives",
    "format": "array"
  },
  "supportsTransactions": {
    "label": "ACID",
    "format": "boolean"
  },
  "isDeprecated": {
    "label": "Deprecated",
    "format": "boolean"
  },
  "isModulePublic": {
    "label": "In app search",
    "format": "boolean"
  },
  "connectionTypes": {
    "label": "Connection",
    "format": "array"
  },
  "batchVariants": {
    "label": "Bulk variants",
    "format": "array"
  },
  "templateCount": {
    "label": "Templates",
    "format": "integer"
  },
  "docsUrl": {
    "label": "Docs",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Make.com App & Module Catalog - Triggers & Actions](https://apify.com/mediocre_interest/make-app-catalog.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mediocre_interest/make-app-catalog.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mediocre_interest/make-app-catalog.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
