with one click
api-tester
Test and debug REST APIs interactively using the HTTP toolkit
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Test and debug REST APIs interactively using the HTTP toolkit
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Helps draft conventional commit messages from git diffs
Inspect and manage the local git repository using file toolkit
Search the web and summarize results using the HTTP toolkit
| name | api-tester |
| description | Test and debug REST APIs interactively using the HTTP toolkit |
| version | 1.0.0 |
| author | system |
| tags | ["api","http","testing","debug"] |
| requires | {"toolkits":["http_toolkit"]} |
| examples | ["Test the /schema endpoint on localhost:11360","Hit https://httpbin.org/get and show me the response","POST to https://httpbin.org/post with body {\"hello\": \"world\"}","Check if https://api.github.com/repos/fastapi/fastapi returns valid data","Test my API at localhost:8000/api/users with Bearer token abc123","Send a DELETE to https://httpbin.org/delete and tell me what it returns"] |
You can help the user test, debug, and explore REST APIs using the HTTP toolkit.
get, post, put, delete)| User Intent | HTTP Method | Tool |
|---|---|---|
| "fetch", "get", "read" | GET | get(url, headers) |
| "create", "send", "post" | POST | post(url, data, headers) |
| "update", "modify" | PUT | put(url, data, headers) |
| "remove", "delete" | DELETE | delete(url, headers) |
After each request, present:
Authentication: When the user provides an API key or token:
{"Authorization": "Bearer TOKEN"}{"X-API-Key": "KEY"}{"Authorization": "Basic BASE64"}Pagination: If the response includes next, page, cursor, or offset fields, mention it and offer to fetch the next page.
Error debugging: On 4xx/5xx errors:
Try these in the assistant console after enabling this skill and http_toolkit: