skills/webhook-http-request/SKILL.md
Webhook - HTTP Request: Make HTTP requests (GET, POST, PUT, DELETE, etc.). Use when an agent needs webhook http request, webhook http request, fetching data from third party rest apis for aggregation or transformation pipelines, submitting form data or json payloads to webhook endpoints for event driven workflows, authenticating with oauth protected services using bearer tokens for secure integrations, polling external services for status updates or job completion in asynchronous workflows.
npx skillsauth add AgentPMT/agent-skills webhook-http-requestInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Last updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
A flexible and secure HTTP client designed for agent-driven API integrations and web service interactions. This function supports all standard HTTP methods including GET, POST, PUT, PATCH, DELETE, HEAD, and OPTIONS, enabling comprehensive RESTful API communication. Users can configure requests with custom headers, query parameters, and request bodies in JSON, plain text, or base64-encoded binary formats. The tool provides four authentication modes: none for public endpoints, basic for username/password credentials automatically encoded to Base64, bearer for OAuth-style token authentication, and header for custom API key or signature-based authentication schemes. Built-in security features include URL validation that blocks private and loopback IP addresses by default (configurable via allow_private), configurable timeouts from 1 to 120 seconds, and response size limits up to 20MB to prevent memory issues. Response handling offers four modes—auto, json, text, and base64—with auto-detection intelligently parsing responses based on content-type headers. The function returns comprehensive response metadata including status code, headers, final URL after redirects, and the parsed body, making it an essential building block for workflows that need to interact with external APIs, webhooks, or web services.
A general-purpose HTTP client that can make requests to any public URL. Supports all standard HTTP methods, multiple authentication schemes, flexible body formats, and configurable response handling. Use it to call REST APIs, fetch web resources, post webhooks, or interact with any HTTP-based service.
Make an HTTP request to a specified URL.
Required Fields:
url — the full URL to send the request to (must be http or https)Optional Fields:
request_method — HTTP method: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS (default: GET)headers — object of custom HTTP headers (e.g., {"Accept": "application/xml"})query_params — object of URL query parameters (e.g., {"page": "2", "limit": "10"})body_json — JSON object body (sets Content-Type to application/json automatically)body_text — plain text bodybody_base64 — base64-encoded binary body (for file uploads or binary data)auth_type — authentication scheme: "none", "basic", "bearer", or "header" (default: "none")auth_username — username for basic auth (required when auth_type is "basic")auth_password — password for basic auth (required when auth_type is "basic")auth_token — token for bearer auth (required when auth_type is "bearer")auth_header_name — custom header name for header auth (required when auth_type is "header")auth_header_value — custom header value for header auth (required when auth_type is "header")timeout_seconds — request timeout in seconds, 1-120 (default: 30)response_mode — how to return the response body: "auto", "json", "text", "base64" (default: "auto")max_response_bytes — maximum response size in bytes, 1024-20971520 (default: 1048576 / 1 MB)allow_private — set to true to allow requests to private/loopback IPs (default: false)Note: Only one body field can be used per request (body_json, body_text, or body_base64).
Example — Simple GET request:
{
"action": "request",
"request_method": "GET",
"url": "https://api.example.com/data",
"query_params": {"format": "json"}
}
Example — POST with JSON body:
{
"action": "request",
"request_method": "POST",
"url": "https://api.example.com/items",
"headers": {"X-Custom-Header": "my-value"},
"body_json": {"name": "Widget", "quantity": 5}
}
Example — Bearer token authentication:
{
"action": "request",
"request_method": "GET",
"url": "https://api.example.com/protected/resource",
"auth_type": "bearer",
"auth_token": "eyJhbGciOiJIUzI1NiIs..."
}
Example — Basic authentication:
{
"action": "request",
"request_method": "GET",
"url": "https://api.example.com/account",
"auth_type": "basic",
"auth_username": "myuser",
"auth_password": "mypassword"
}
Example — Custom header authentication (API key):
{
"action": "request",
"request_method": "GET",
"url": "https://api.example.com/v2/search",
"auth_type": "header",
"auth_header_name": "X-API-Key",
"auth_header_value": "abc123def456"
}
Example — PUT to update a resource:
{
"action": "request",
"request_method": "PUT",
"url": "https://api.example.com/items/42",
"body_json": {"name": "Updated Widget", "quantity": 10}
}
Example — DELETE a resource:
{
"action": "request",
"request_method": "DELETE",
"url": "https://api.example.com/items/42"
}
Example — Get binary response as base64:
{
"action": "request",
"request_method": "GET",
"url": "https://example.com/image.png",
"response_mode": "base64"
}
Successful requests return:
status_code — HTTP status code (e.g., 200, 404)headers — response headers as an objectcontent_type — the Content-Type header valueurl — the final URL (after any redirects)body_json, body_text, or body_base64 — response body in the format determined by response_modebody_json and auth_type to interact with any REST service.response_mode: "base64" to receive binary data encoded for further processing.http and https URLs are supported.allow_private to true to override.body_json, body_text, or body_base64 will cause an error.response_mode is "auto", JSON responses are parsed automatically; otherwise text is returned, or base64 for binary content.max_response_bytes will be rejected. Increase the limit (up to ~20 MB) for larger payloads.Webhook - HTTP Request on AgentPMT.request.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 1.
x402 availability: not enabled for this product.
request (action slug: request): Make an HTTP request to a specified URL. Supports all standard HTTP methods, multiple authentication schemes, and flexible body/response formats. Price: 5 credits. Parameters: allow_private, auth_header_name, auth_header_value, auth_password, auth_token, auth_type, auth_username, body_base64, plus 9 more.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "webhook-http-request".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "webhook-http-request", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "webhook-http-request"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "webhook-http-request"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "webhook-http-request"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "webhook-http-request"
}
}
Product slug: webhook-http-request
Marketplace page: https://www.agentpmt.com/marketplace/webhook-http-request
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Webhook---HTTP-Request",
"arguments": {
"action": "request",
"allow_private": false,
"auth_header_name": "example auth header name",
"auth_header_value": "example auth header value",
"auth_password": "example auth password",
"auth_token": "example auth token",
"auth_type": "none",
"auth_username": "example auth username",
"body_base64": "example body base64"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "webhook-http-request",
"parameters": {
"action": "request",
"allow_private": false,
"auth_header_name": "example auth header name",
"auth_header_value": "example auth header value",
"auth_password": "example auth password",
"auth_token": "example auth token",
"auth_type": "none",
"auth_username": "example auth username",
"body_base64": "example body base64"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.request fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)tools
Plaud Transcripts Corrected With Your Own Terminology Glossary: Fixes the words your transcription keeps getting wrong, by giving the pipeline your vocabulary instead of hoping a bigger model guesses right. Every speech model mangles terms it has never seen: cell line and reagent names, drug and device names, case and matter numbers, part numbers, local spelling and number conventions, team and client names. Swapping to a different model does not fix this, because none of them have your terms e.
tools
Plaud Spoken Field Notes to a Structured Sheet: Turns a spoken site visit into a filled-in spreadsheet row, so measurements and specs never get typed up twice. Built for anyone who dictates structured details on the job rather than writing them down: window and flooring measurements, equipment specs, inspection findings, punch lists, service call notes. Say the details out loud in the same order each visit (client, room, width, drop, colour, notes) and the workflow reads each new Plaud recordin.
development
Plaud Recordings to Google Calendar Events: Puts the meetings you agree to out loud straight onto your Google Calendar, without Zapier in the middle. Plaud's own app has no Calendar integration, so this closes that gap directly: each new recording is scanned, the transcript pulled, and any genuine scheduling commitment spoken in it ("let's do Tuesday at 3", "I'll come back out Thursday morning") is extracted with the relative date resolved against the recording's own date and your timezone. Eac.
development
One Plaud Recording, Several Differently Formatted Summaries: Gets you past the one-template-per-recording ceiling. The Plaud app applies a single AutoFlow template to a recording, so if you want a short recap for yourself, a decisions-only version for the people who missed it, and a clean action list for your task manager, you are re-running or rewriting by hand. This workflow reads the transcript once and produces every format you have defined in a single pass: you list the output formats you.