Docs›Make
AutomationConnect CLōD to Make
Connect CLōD to any Make scenario via the HTTP module — no custom node needed.
Overview
Make (formerly Integromat) is a visual automation platform. CLōD's OpenAI-compatible API works directly with Make's built-in HTTP module, letting you call any AI model from your scenarios without a custom integration.
Prerequisites
- • CLōD account — free at app.clod.io
- • Make installed
- • CLōD API key (Dashboard → API Keys → Generate)
Setup
Step 1: Get your CLōD API key
Sign in at app.clod.io → API Keys → Generate Key.
Step 2: Add an HTTP module in Make
In your Make scenario, add an HTTP → Make a request module.
Configure:
- URL: https://api.clod.io/v1/chat/completions
- Method: POST
- Headers: Authorization: Bearer YOUR_CLOD_API_KEY
Content-Type: application/json
- Body type: Raw
- Content type: JSON (application/json)
- Request content:
{
"model": "meta-llama/llama-3.1-8b-instruct:free",
"messages": [{"role": "user", "content": "{{your_input_variable}}"}]
}
Step 3: Parse the response
Use Make's JSON Parse module on the response body.
Access the reply at:
{{1.choices[0].message.content}}
Available Models
CLōD supports 50+ models. For agentic tools, use models that support tool calling / function calling.
Browse models →