web-fetch

Installation
SKILL.md

Web Fetch & HTTP Client

Web Fetch provides powerful tools for making HTTP requests, testing REST APIs, consuming webhooks, and integrating with external services. Includes native fetch API, axios library, curl commands, and specialized testing utilities.

Direct Control (CLI / API / Scripting)

Native Fetch API (Node.js 18+)

// Basic GET request
async function fetchData(url) {
  try {
    const response = await fetch(url);

    if (!response.ok) {
      throw new Error(`HTTP error! status: ${response.status}`);
    }

    const data = await response.json();
Related skills
Installs
2
GitHub Stars
7
First Seen
Mar 18, 2026