Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Perform structured HTTP/HTTPS requests (GET, POST, PUT, DELETE) with custom headers and JSON body support. Use for API testing, health checks, or interacting...
Perform structured HTTP/HTTPS requests (GET, POST, PUT, DELETE) with custom headers and JSON body support. Use for API testing, health checks, or interacting...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
A lightweight, dependency-free HTTP client for OpenClaw.
const api = require('skills/api-tester'); const result = await api.request('GET', 'https://api.example.com/data'); console.log(result.status, result.data);
const api = require('skills/api-tester'); const payload = { key: 'value' }; const headers = { 'Authorization': 'Bearer <token>' }; const result = await api.request('POST', 'https://api.example.com/submit', headers, payload);
The request function returns a Promise resolving to: { status: 200, // HTTP status code headers: { ... }, // Response headers data: { ... }, // Parsed JSON body (if applicable) or raw string raw: "...", // Raw response body string error: "..." // Error message if request failed (network error, timeout) }
Zero dependencies: Uses Node.js built-in http and https modules. Auto-JSON: Automatically stringifies request body and parses response body if Content-Type matches. Timeout support: Default 10s timeout, configurable. Error handling: Returns structured error object instead of throwing, ensuring safe execution.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.