Call and validate an endpoint in one step
test_endpointValidate a live API endpoint against its documented schema by sending real parameters and comparing the response. Returns pass/fail with specific mismatches.
Instructions
Call a documented endpoint with real parameters, then validate the real response against its documented schema. Returns pass/fail plus the specific mismatches found. This is the main tool for 'does this endpoint actually work as documented'.
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":"..."} | |
| body | No | ||
| path | Yes | ||
| method | Yes | ||
| baseUrl | No | ||
| headers | No | ||
| timeoutMs | No | Abort the request after this many milliseconds. | |
| pathParams | No | ||
| queryParams | No |