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.
- A CometAPI account with an active API key — get yours here
- A Make account — sign up here
Log in to the CometAPI console. Click Add API Key and copy your CometAPI API key.
In Make, click Create scenario. In the scenario editor, click the + icon and search for CometAPI.
Select Make an API Call as the action. When prompted to add a connection, paste your CometAPI API key and click Save.
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.
Click Run once to execute the scenario. A successful AI response in the output confirms the integration is working.
If the call fails, verify your API key and endpoint URL, or contact CometAPI support.
Tip You can replace the
/v1/chat/completionsendpoint with any CometAPI endpoint — for example/v1/images/generationsfor image generation. Adjust the JSON body to match the target endpoint's parameters.







