no-code
Glossary ↗Custom API Call (HTTP Request Module)
A custom API call is a generic HTTP request step inside an automation or no-code app — you specify the method, URL, headers, and body yourself — used to talk to a service that has no prebuilt connector. It matters because native integrations only cover popular apps and their common actions; the moment you need a niche tool, a new endpoint, or a beta feature, the pre-packaged connector runs out and the raw HTTP module is your way through. Every serious automation platform ships one (Zapier's Webhooks/Code, Make's HTTP module, n8n's HTTP Request node). Practically, you'll need to read the target API's docs, handle authentication yourself (API-key header, bearer token, or OAuth), and parse the JSON response to map fields downstream. It's the bridge between no-code convenience and full API power — a little more technical, but it means "no connector" almost never means "impossible."
Related terms