Run a contract-test pass across the whole API
run_all_testsValidate every parameter-free GET endpoint in real time: calls each one and checks the response against its documented schema. Use includeMutating to also test POST/PUT/PATCH with generated data.
Instructions
Best-effort run across every GET endpoint that needs no required parameters: calls each one for real and validates the response against the documented schema. Endpoints needing parameters are listed as skipped (use test_endpoint for those individually), and DELETE/OPTIONS/HEAD are never auto-run. Set includeMutating: true to also auto-generate example params/bodies from the schema and attempt POST/PUT/PATCH endpoints — off by default because that can create or modify real data on the live API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| auth | No | Auth preset applied to the request. Examples: {"type":"bearer","token":"..."}, {"type":"apiKey","in":"header","name":"X-API-Key","value":"..."}, {"type":"basic","username":"...","password":"..."} | |
| baseUrl | No | ||
| timeoutMs | No | ||
| includeMutating | No | Attempt POST/PUT/PATCH with auto-generated example data. Default false — may write real data. |