- OpenAPI 2 (Swagger) or 3?
- Both. The viewer auto-detects the version. OpenAPI 3.x is the current standard; Swagger 2 is still widely used in older systems.
- Can I try requests?
- Read-only viewer. For live requests use Swagger UI hosted alongside the spec, or Postman/Insomnia importing the spec.
- What's shown per endpoint?
- Path, method, parameters, request body schema, response schemas, examples, descriptions. Everything from the spec rendered for reading.
- Does it validate the spec?
- Syntax yes — malformed OpenAPI shows parse errors. For semantic validation (correct schema shapes, no circular refs) use a dedicated linter like Spectral.