Return realistic fake data
Use {{faker.*}} tokens to get fresh names, emails, and UUIDs on every call.
When to use this
Hard-coded sample data makes demos look fake and hides off-by-one bugs. Drop {{faker.name}}, {{faker.email}}, {{faker.uuid}} into the response body and the mock returns different realistic values on every hit — great for demos, seeding, and list/pagination UIs.
Create the mock
curl -X POST https://quickmock.dev/api/mocks \
-H 'Content-Type: application/json' \
-d '{
"method": "GET",
"content_type": "application/json",
"response_body": "{\"id\":\"{{faker.uuid}}\",\"name\":\"{{faker.name}}\",\"email\":\"{{faker.email}}\"}"
}'
Call it
curl https://quickmock.dev/m/<slug>
What you get
a fresh object every call, e.g.
{"id":"7c9e...","name":"Ada Carter","email":"ada@example.com"}