# Get real parameter keys for Make.com modules

**Use case:** 

Reads Make's public template library and fills in the parameter, mapper and output keys that real templates use for each module, plus how many templates use it. Useful when you are generating or validating blueprints and need the key names Make actually expects. Paste a Make API token with the templates:read scope to run it on your account.

## Input

```json
{
  "makeZone": "eu1",
  "apps": [
    "google-sheets",
    "slack",
    "airtable"
  ],
  "moduleKinds": [],
  "includeConnections": true,
  "harvestTemplates": true,
  "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`).
