Full read & write
GET, POST, PATCH, PUT, DELETE — records echo their id back.
Don't want to stand up a backend for a couple of endpoints? Upload your data and Mockly serves it as a real REST API: read and write, pages, filters, relations.
{
"items": [
{ "id": 1, "title": "Coffee" },
{ "id": 2, "title": "Tea" }
],
"meta": {
"total_items": 2,
"current_page": 1
}
}An array or an object into a new collection. Any shape works, and JSON5 is accepted too — unquoted keys, trailing commas, comments.
[
{ "title": "Coffee" },
{ "title": "Tea" }
]A hosted URL under your project id, instantly.
CRUD, pagination, filters, relations — the contract never drifts.
{
"items": [ … ],
"meta": { "total_items": 2 }
}Without standing up a backend.
GET, POST, PATCH, PUT, DELETE — records echo their id back.
Structured meta: total_items, total_pages, current_page, per_page.
Only matching records come back: substring match, wildcards, numeric range. And q searches every field at once.
Sorting happens server-side — clicking a table column actually works. Numbers compare as numbers.
Got a userId? Mockly attaches the record from users under user. Nested data without a second round trip.
Every collection is served under the project public id, isolated and shareable.