All common methods
Send GET, POST, PUT, PATCH, and DELETE requests from one tool.
Call external APIs from Make, Zapier, n8n, or custom code through one consistent endpoint with safer defaults.
/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"
}
}
Each tool follows the same platform contract: bearer auth, JSON requests, predictable responses, action usage tracking, and operational visibility.
Send GET, POST, PUT, PATCH, and DELETE requests from one tool.
Pass authorization headers, content types, and provider-specific fields.
SSRF protection blocks private networks and unsafe internal targets.
Receive status codes, headers, parsed JSON, raw body, and timing metadata.
{
"success": true,
"data": {
"status": 200,
"headers": { "content-type": "application/json" },
"json": { "ok": true }
}
}
Start with 100 free actions per month. No card required.