analyze_endpoint
Analyze API endpoints from Swagger/OpenAPI specs to understand parameters, request bodies, responses, and security requirements for testing.
Instructions
Analyze a specific endpoint from a loaded Swagger spec. Returns detailed info about parameters, request body, responses, and security.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | Swagger/OpenAPI spec source: URL (https://...) or local file path (/path/to/spec.json, ./spec.yaml) | |
| path | Yes | Endpoint path, e.g. /api/orders | |
| method | Yes | HTTP method | |
| auth_header | No | Authorization header value, e.g. "Bearer eyJ..." or "Basic dXNlcjpwYXNz" | |
| headers | No | Additional HTTP headers as key-value pairs, e.g. {"X-API-Key": "abc123"} |