# Export every Make.com app and module to a table

**Use case:** 

Runs the catalog over your whole Make account: one row per module per app major version, one row per app version, and a JSON index keyed the way a blueprint names a module. Includes connection types and OAuth scopes, the modules Make's editor no longer lists, and your organization's own custom apps. Paste a Make API token with the apps:read scope to run it on your account.

## Input

```json
{
  "makeZone": "eu1",
  "apps": [
    "builtin",
    "gateway",
    "http",
    "util",
    "google-sheets",
    "slack",
    "openai-gpt-3",
    "airtable"
  ],
  "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`).
