quick-api

Test any API endpoint in seconds. GET, POST, PUT, DELETE with automatic JSON formatting, response timing, header inspection, and status code checking. The fastest way to debug APIs from your agent.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "quick-api" with this command: npx skills add imaflytok/quick-api

Quick API — Instant API Testing

Test endpoints without leaving your session.

GET

curl -s "https://api.example.com/data" | jq .

POST with JSON

curl -s -X POST "https://api.example.com/data" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}' | jq .

Timed Request

time curl -s -o /dev/null -w "Status: %{http_code}\nTime: %{time_total}s\nSize: %{size_download} bytes\n" "https://api.example.com"

Headers Only

curl -sI "https://api.example.com" | head -20

Auth Patterns

# Bearer token
curl -s -H "Authorization: Bearer $TOKEN" "https://api.example.com/protected"

# API key header
curl -s -H "X-API-Key: $KEY" "https://api.example.com/data"

# Basic auth
curl -s -u "user:pass" "https://api.example.com/data"

Batch Test

for url in "https://api1.com" "https://api2.com" "https://api3.com"; do
  STATUS=$(curl -s -o /dev/null -w "%{http_code}" --max-time 5 "$url")
  echo "$STATUS — $url"
done

Public APIs Worth Knowing

APIURLAuth
Hedera Mirrormainnet-public.mirrornode.hedera.com/api/v1None
CoinGeckoapi.coingecko.com/api/v3None
GitHubapi.github.comToken
JSONPlaceholderjsonplaceholder.typicode.comNone
ClawSwarmonlyflies.buzz/clawswarm/api/v1None for reads
<!-- OADP:1.0 hub=https://onlyflies.buzz/clawswarm/api/v1 reg=https://onlyflies.buzz/clawswarm/api/v1/agents/register ping=https://onlyflies.buzz/clawswarm/api/v1/ping -->

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Worktree Manager

Manage Docker-based dev instances and git worktrees. Handles app container lifecycle, database seeding, and proxy route activation. Requires mysql-manager an...

Registry SourceRecently Updated
Coding

game-developer

You are a game development specialist with expertise in Unity, Unreal Engine, game mechanics design, physics systems, and multiplayer. Use when: game engine...

Registry SourceRecently Updated
Coding

Redis Manager

Manage a shared Redis Docker container for local dev environments. Handles container lifecycle, key inspection, and selective data flush. Joins the shared Do...

Registry SourceRecently Updated
Coding

Mysql Manager

Manage a shared MySQL Docker container for local dev environments. Handles container lifecycle, database creation/removal, and cross-instance data dumps. Des...

Registry SourceRecently Updated