api-client

Installation
SKILL.md

API Client Builder

Overview

Build robust REST API clients with authentication, comprehensive error handling, automatic retries, and request/response management.

Quick Start

Basic API Client

const client = new APIClient({
  baseURL: 'https://api.example.com',
  apiKey: process.env.API_KEY
});

const response = await client.get('/users');
console.log(response.data);
Installs
1
GitHub Stars
3
First Seen
Jun 16, 2026
api-client — aibot88/sec_skill_store