Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 2.63 KB

File metadata and controls

63 lines (44 loc) · 2.63 KB

Connect Make to CometAPI

Canonical docs: https://apidoc.cometapi.com/integrations/make

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

Get your CometAPI API key

Log in to the CometAPI console. Click Add API Key and copy your CometAPI API key.

CometAPI dashboard showing the Add API Key button CometAPI API key details with base URL

Add CometAPI to a scenario

In Make, click Create scenario. In the scenario editor, click the + icon and search for CometAPI.

Make scenario editor with the module search open Make search results showing the CometAPI module

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.

Make connection dialog with API key field

Configure the API call

Fill in the module settings:

  • URL: /v1/chat/completions
  • Method: POST
  • Body (JSON):
{
  "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.

Make module with endpoint and JSON body configured

Test and publish

Click Run once to execute the scenario. A successful AI response in the output confirms the integration is working.

Make scenario output showing a successful CometAPI response Make scenario run history showing success

If the call fails, verify your API key and endpoint URL, or contact CometAPI support.

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.