← AgentShield
Integration
AgentShield for Make
Track what your Make scenarios spend on AI APIs. Setup in 2 minutes with the HTTP module — no code, no SDK.
Use case
Make (Integromat) scenarios using OpenAI, Anthropic, or any AI module
Quick setup
// Step 1: Add an HTTP module after your AI module
// Step 2: Configure it exactly like this:
Module: HTTP > Make a request
URL: https://api.agentshield.one/v1/track
Method: POST
Headers:
Authorization: Bearer ags_live_xxxxx
Content-Type: application/json
Body type: Raw
Content type: JSON (application/json)
Body:
{
"agent": "my-make-scenario",
"model": "gpt-4o",
"input_tokens": {{ai_module.usage.prompt_tokens}},
"output_tokens": {{ai_module.usage.completion_tokens}}
}
// Costs appear in your dashboard immediately.