Invalid input handling
Send malformed, missing or boundary-value payloads and check the response.
API Testing
I check how the API behaves with real, invalid and unexpected data — and whether the frontend handles those responses properly.
Use this when the product depends on backend states, permissions, validation or integrations. API testing helps find issues that are easy to miss if you only test through the UI.
I check how this behaves in the real flow and whether it can block, confuse or mislead a user.
I check how this behaves in the real flow and whether it can block, confuse or mislead a user.
I check how this behaves in the real flow and whether it can block, confuse or mislead a user.
I check how this behaves in the real flow and whether it can block, confuse or mislead a user.
I check how this behaves in the real flow and whether it can block, confuse or mislead a user.
I check how this behaves in the real flow and whether it can block, confuse or mislead a user.
Send malformed, missing or boundary-value payloads and check the response.
Check what different users can view, create, update or delete through the API.
Compare backend responses with the status, messages and actions shown in the interface.
Requests, responses, expected behaviour, actual behaviour and product impact.
Improved requests, environments, assertions or collection structure where useful.
A short overview of inconsistent endpoints, weak validation and retest priorities.
Endpoint: POST /api/v1/orders Scenario: Invalid contact email + missing address Expected: 422 validation response with field-level errors. Actual: 200 OK returned while the UI shows checkout failure. Risk: Frontend and backend disagree about whether the order was accepted.
Identify endpoints that support the release, integration or product risk.
Check valid, invalid, boundary and permission-based scenarios.
Check whether the UI and API tell the same story.
Provide request and response examples developers can inspect quickly.
A few useful pages that show how this kind of work is reported.
Not always. Many API checks can be done through docs, staging endpoints, Postman and safe test accounts.
Yes. That is often the best approach when user flows depend heavily on backend state.
Yes. I can review, structure or improve Postman requests and useful assertions.
Send the API docs, staging endpoint or product flow that needs validation.