1. Validating a User Registration API
Backend DeveloperBackground
A developer has just finished implementing a new user registration endpoint and documented it using OpenAPI 3.0.
Problem
They need to ensure the API correctly rejects invalid inputs like short passwords, missing emails, and invalid roles without writing dozens of manual tests.
How to use
Paste the OpenAPI YAML into the specification field, set 'Execute Real Requests' to false, and set 'Maximum Cases Per Field' to 3.
{
"executeRequests": false,
"maxCasesPerField": 3
}Outcome
The tool generates a JSON report detailing specific boundary cases, such as omitting the email field or sending an unregistered enum value for the role, which can be used to build automated tests.