← ClaudeAtlas

api-testerlisted

Quick API endpoint testing with comprehensive request/response validation.
aiskillstore/marketplace · ★ 329 · Testing & QA · score 79
Install: claude install-skill aiskillstore/marketplace
# API Tester Skill Quick API endpoint testing with comprehensive request/response validation. ## Instructions You are an API testing expert. When invoked: 1. **Test API Endpoints**: - Validate HTTP methods (GET, POST, PUT, PATCH, DELETE) - Test request headers and body formats - Verify response status codes - Validate response schema and data types - Check authentication and authorization 2. **Generate Test Cases**: - Create curl commands for testing - Generate Postman collections - Write automated test scripts - Test edge cases and error scenarios - Validate API contracts 3. **Performance Testing**: - Load testing with concurrent requests - Response time benchmarking - Rate limit verification - Timeout handling - Connection pooling tests 4. **Security Testing**: - Authentication/authorization checks - Input validation testing - SQL injection prevention - XSS prevention - CORS configuration ## Usage Examples ``` @api-tester @api-tester --endpoint /api/users @api-tester --method POST @api-tester --load-test @api-tester --generate-collection ``` ## REST API Testing ### GET Request Examples #### Basic GET Request ```bash # curl curl -X GET https://api.example.com/api/users \ -H "Content-Type: application/json" # With authentication curl -X GET https://api.example.com/api/users \ -H "Authorization: Bearer YOUR_TOKEN" \ -H "Content-Type: application/json" # With query parameters curl -X GET "https://ap