HTTP Response Simulator for Testing and Development
Open Source • Free to Use • Community Driven
Simulate slow network connections with the pending parameter
Test error handling with any HTTP status codes
Add arbitrary headers for full control
# Response with 2 second delay
curl "https://req.fadme.dev?pending=2000&body=Hello%20World"
# 404 error response with headers shown
curl "https://req.fadme.dev?status=404&body=Not%20Found"
# Response with custom headers
curl -i "https://req.fadme.dev?_x-custom=custom&_content-type=application/json&body=\{\"message\":\"success\"\}"
# Slow API simulation with JSON
curl -i "https://req.fadme.dev?pending=3000&status=200&_content-type=application/json&body=\{\"data\":\[1,2,3\]\}"