| name | http-testing |
| description | HTTP API testing and debugging |
| homepage | https://docs.aof.sh/skills/http-testing |
| metadata | {"emoji":"🔗","version":"1.0.0","requires":{"bins":["curl","jq"],"env":[],"config":[]},"tags":["http","api","testing"]} |
HTTP Testing Skill
Test HTTP APIs for functionality, performance, and debugging.
When to Use This Skill
- Testing API endpoints
- Debugging HTTP issues
- Verifying authentication
- Checking response format
- Testing error conditions
Steps
- GET request —
curl http://endpoint/
- POST with data —
curl -X POST -d '{}' http://endpoint/
- Check headers —
curl -i http://endpoint/
- Add auth —
curl -H 'Authorization: Bearer token' http://endpoint/
- Parse response —
curl http://endpoint/ | jq .