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 .