Skip to main content
All endpoints support custom status codes, response delays, content types, and optional authentication.

Validation Endpoints

Perfect for testing form submissions and input validation. Define rules for headers, query parameters, and request body fields. The endpoint automatically returns appropriate success or error responses based on whether rules pass. Best for: Form testing, API input validation, request format verification

HTTP Endpoints

Our most versatile endpoint type. Create multiple response scenarios with conditional rules based on request parameters. Switch between response modes to test various scenarios. Best for: Complex API simulation, conditional responses, error scenario testing

Advanced HTTP Features

Add any HTTP headers to your responses — perfect for CORS, caching, or custom application headers.
Simulate real-world network conditions by adding artificial latency (0–30,000ms). Test timeout handling and loading states.
Support for JSON, XML, plain text, HTML, and form-urlencoded. Appropriate headers are set automatically.
Return any HTTP status code (200, 201, 400, 401, 404, 500, etc.) to test error handling.

Error Response Format

All endpoints return consistent error responses:
{
  "error": "Validation failed",
  "message": "Name field is required",
  "status": 400,
  "details": {
    "field": "name",
    "rule": "required"
  }
}