> ## Documentation Index
> Fetch the complete documentation index at: https://apidoc.cometapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect Make to CometAPI

> Use this guide to connect Make to CometAPI by setting the base URL, API key, and model or provider options.

Make (formerly Integromat) is a visual automation platform. Connect CometAPI to build AI-powered workflows across hundreds of apps — no code required.

## Prerequisites

* A CometAPI account with an active API key — [get yours here](https://www.cometapi.com/console/token)
* A Make account — [sign up here](https://www.make.com/en/register)

<Steps>
  <Step title="Get your CometAPI API key">
    Log in to the [CometAPI console](https://www.cometapi.com/console/token). Click **Add API Key** and copy your CometAPI API key.

    <Frame>
      <img src="https://mintcdn.com/cometapi/SZhlxZhCnMLn__BW/images/overview/810968_364191.png?fit=max&auto=format&n=SZhlxZhCnMLn__BW&q=85&s=aef81a83f29f8eb16655ed4060425f50" alt="CometAPI dashboard showing the Add API Key button" width="3824" height="1892" data-path="images/overview/810968_364191.png" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/cometapi/HhtmQffktazbxUvS/images/overview/810968_364193.png?fit=max&auto=format&n=HhtmQffktazbxUvS&q=85&s=d893f659267150d0faf45f99eb5dffc1" alt="CometAPI API key details with base URL" width="2434" height="1232" data-path="images/overview/810968_364193.png" />
    </Frame>
  </Step>

  <Step title="Add CometAPI to a scenario">
    In Make, click **Create scenario**. In the scenario editor, click the **+** icon and search for **CometAPI**.

    <Frame>
      <img src="https://mintcdn.com/cometapi/E4FFvyMYmaOZoldp/images/integrations/810968_360356.png?fit=max&auto=format&n=E4FFvyMYmaOZoldp&q=85&s=9a7600888fe9833ac94ab3dc1df47434" alt="Make scenario editor with the module search open" width="1885" height="953" data-path="images/integrations/810968_360356.png" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/cometapi/E4FFvyMYmaOZoldp/images/integrations/810968_360357.png?fit=max&auto=format&n=E4FFvyMYmaOZoldp&q=85&s=45186c2db38fa62e2a1592ec722b044a" alt="Make search results showing the CometAPI module" width="1895" height="935" data-path="images/integrations/810968_360357.png" />
    </Frame>
  </Step>

  <Step title="Connect your CometAPI account">
    Select **Make an API Call** as the action. When prompted to add a connection, paste your CometAPI API key and click **Save**.

    <Frame>
      <img src="https://mintcdn.com/cometapi/SZhlxZhCnMLn__BW/images/integrations/810968_360358.png?fit=max&auto=format&n=SZhlxZhCnMLn__BW&q=85&s=260de8318fa33dc6100ac98b8a2c9c34" alt="Make connection dialog with API key field" width="1311" height="891" data-path="images/integrations/810968_360358.png" />
    </Frame>
  </Step>

  <Step title="Configure the API call">
    Fill in the module settings:

    * **URL**: `/v1/chat/completions`
    * **Method**: `POST`
    * **Body** (JSON):

    ```json theme={null}
    {
      "model": "your-model-id",
      "messages": [
        {
          "role": "user",
          "content": "Hello!"
        }
      ],
      "stream": false
    }
    ```

    Click **Save**. Replace `your-model-id` with a current model ID from the [CometAPI Models page](/overview/models).

    <Frame>
      <img src="https://mintcdn.com/cometapi/SZhlxZhCnMLn__BW/images/integrations/810968_360359.png?fit=max&auto=format&n=SZhlxZhCnMLn__BW&q=85&s=951565cb41ecc00937654a7c418a9ec3" alt="Make module with endpoint and JSON body configured" width="1740" height="925" data-path="images/integrations/810968_360359.png" />
    </Frame>
  </Step>

  <Step title="Test and publish">
    Click **Run once** to execute the scenario. A successful AI response in the output confirms the integration is working.

    <Frame>
      <img src="https://mintcdn.com/cometapi/SZhlxZhCnMLn__BW/images/integrations/810968_360369.png?fit=max&auto=format&n=SZhlxZhCnMLn__BW&q=85&s=4bc0c56e0e80a8d9b60af213a5f7ecf3" alt="Make scenario output showing a successful CometAPI response" width="1885" height="976" data-path="images/integrations/810968_360369.png" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/cometapi/SZhlxZhCnMLn__BW/images/integrations/810968_360370.png?fit=max&auto=format&n=SZhlxZhCnMLn__BW&q=85&s=c2193af570a299525216ec10bd0ee008" alt="Make scenario run history showing success" width="1855" height="990" data-path="images/integrations/810968_360370.png" />
    </Frame>

    If the call fails, verify your API key and endpoint URL, or contact [CometAPI support](https://www.cometapi.com).
  </Step>
</Steps>

<Tip>
  You can replace the `/v1/chat/completions` endpoint with any CometAPI endpoint — for example `/v1/images/generations` for image generation. Adjust the JSON body to match the target endpoint's parameters.
</Tip>
