Back to Tools

HTTP Client

Network

Make HTTP requests to any API endpoint. Supports all methods, headers, authentication, and response parsing.

Available Actions
getpostputdeletepatch
Input Schema
{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string"
    },
    "body": {
      "type": "object"
    },
    "method": {
      "type": "string"
    },
    "headers": {
      "type": "object"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "body": {
      "type": "any"
    },
    "status": {
      "type": "number"
    },
    "headers": {
      "type": "object"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/http-client

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/http-client \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "get"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.