AI Matrix Panel

Mock API Server

Built for Frontend, Mobile, and QA Mock Testing.

Mock API Server
Design & Development
Muhammad Hassan
Technical Project Manager
API Base URL
https://www.tools.testqds.com/Mock-API-Server/api

Edit Mock Endpoint

Store endpoint rules in database and serve response through /api/{path}

Quick Preview
https://www.tools.testqds.com/Mock-API-Server/api/your-path

Call this later as: https://www.tools.testqds.com/Mock-API-Server/api/your-path

Reset

Live Endpoint Registry

Saved routes that will be served from the api folder.

Logs
2 Endpoint(s)
Label Method Endpoint URL Code Delay Status Actions
QuickLease Feedback
application/json
POST
https://www.tools.testqds.com/Mock-API-Server/api/customer/feedbacks
HTTP 200 0 ms LIVE
Edit
Expected Request
{
  "stars": 5,
  "comment": "Feedback",
  "public": true
}
Mock Response
{
  "status": true,
  "message": "Review submitted successfully",
  "data": {
    "id": 1,
    "user_id": 25,
    "stars": 5,
    "comment": "Feedback",
    "public": true,
    "datetime": "2026-12-31 23:59:59"
  }
}
QuickLease Feedback
application/json
GET
https://www.tools.testqds.com/Mock-API-Server/api/customer/feedbacks
HTTP 200 0 ms LIVE
Edit
Expected Request
No request body rule
Mock Response
{
  "status": true,
  "message": "All Reviews Received",
  "data": [
    {
      "stars": 5,
      "comment": "Feedback",
      "public": true,
      "datetime": "2026-12-31 23:59:59"
    }
  ]
}