All tools
API utility

HTTP Request API
for controlled external calls

Call external APIs from Make, Zapier, n8n, or custom code through one consistent endpoint with safer defaults.

REST calls Headers JSON bodies
Endpoint POST
/api/utilities/http-request
POST /api/utilities/http-request
Authorization: Bearer ns_live_...

{
  "method": "POST",
  "url": "https://api.example.com/orders",
  "headers": {
    "Authorization": "Bearer provider_token"
  },
  "body": {
    "customer": "Acme Inc",
    "status": "ready"
  }
}
What it handles

Built for utility work inside real automations.

Each tool follows the same platform contract: bearer auth, JSON requests, predictable responses, action usage tracking, and operational visibility.

All common methods

Send GET, POST, PUT, PATCH, and DELETE requests from one tool.

Custom headers

Pass authorization headers, content types, and provider-specific fields.

Safer networking

SSRF protection blocks private networks and unsafe internal targets.

Consistent responses

Receive status codes, headers, parsed JSON, raw body, and timing metadata.

Response JSON
{
  "success": true,
  "data": {
    "status": 200,
    "headers": { "content-type": "application/json" },
    "json": { "ok": true }
  }
}
Common uses

Where teams usually put it to work.

Webhook calls
Provider APIs
Internal ops workflows
No-code integrations
Start free

Test this tool before wiring it into a production workflow.

Start with 100 free actions per month. No card required.