Home · Integrations · Make
Live
Wire FoxAPIs into Make.
Make's HTTP module is the cleanest way to integrate. The platform parses our responses well, handles iterators over arrays, and lets you fan out a single FoxAPIs response into many downstream actions.
Step-by-step install
- In your scenario, add the HTTP → Make a request module.
- URL: https://www.mentionfox.com/mcp. Method: POST.
- Headers: Authorization: Bearer YOUR_FOXAPIS_KEY, Content-Type: application/json.
- Body type: Raw. Content type: JSON (application/json).
- Request content: paste the JSON-RPC body, mapping fields from upstream modules.
- Toggle Parse response on so downstream modules see the response as a structured object.
JSON-RPC body template
{ "jsonrpc": "2.0", "id": "1", "method": "tools/call", "params": { "name": "scan_mentions", "arguments": { "query": "{{1.brand}}", "lookback_days": "7" } } }
Three worked examples
Example 1 — Hourly competitive watch
Schedule (hourly) → HTTP scan_mentions → Iterator over mentions → Filter by sentiment → Slack post for each high-signal mention.
Example 2 — Form-to-dossier
Webhook (custom form) → HTTP find_contact → HTTP get_dossier → Google Doc creation, formatted as a one-pager.
Example 3 — Weekly GEO digest
Schedule (weekly) → HTTP get_geo_score → HTTP get_geofixer_top_actions → Notion database row plus an email summary.
Common errors & fixes
JSON parse offYou forgot to toggle Parse response. Without it downstream maps see a string blob.missing fieldMake's mapping picker shows the response shape only after a successful run; run once with sample data first.iterator emptyIterator path needs to point at data.mentions (or wherever the array sits in the tool's response).