api-testing
Installation
SKILL.md
API Testing
Test REST and GraphQL APIs systematically.
Test Categories
| Category | What | Example |
|---|---|---|
| Functional | Does it work? | POST /users returns 201 |
| Validation | Input handling | Missing required field → 400 |
| Auth | Access control | No token → 401 |
| Edge Cases | Boundary conditions | Max page size, empty results |
| Contract | Schema conformance | Response matches OpenAPI spec |
| Performance | Within SLO | p95 < 500ms |