Pure Dead Simple HTTP Testing
Use SendHttp to check how your application code works in unexpected circumstances.
- No mocks.
- No code changes.
- Real network call.
- Just change config.
Example Request/Response
curl -I https://www.sendhttp.com/500
HTTP/1.1 500 Internal Server Error
Date: Fri, 23 Aug 2024 11:57:15 GMT
Server: Kestrel
Use Case 1
How does your front-end code handle server errors?
Simply swap out your API endpoint with SendHttp
https://www.sendhttp.com/502
HTTP/1.1 502 Bad Gateway
Date: Fri, 23 Aug 2024 12:07:09 GMT
Server: Kestrel
Use Case 2
How does your back-end code handle downstream API errors?
Simply swap out your downstream API endpoint with SendHttp
https://www.sendhttp.com/429
HTTP/1.1 429 Too Many Requests
Date: Fri, 23 Aug 2024 12:07:43 GMT
Server: Kestrel
FAQ has more details