demo
demo
1 subscribers
9.2/10 popularity
48 ms avg latency
100% success rate
9 endpoints
The in-depth APIMemo review for this API hasn't been published yet —
the data below comes straight from the public marketplace listing.
demo endpoints
| Method | Endpoint | Description |
|---|---|---|
| system | ||
| GET |
getHealth /health |
|
| GET |
getRootStatus / |
|
| items | ||
| POST |
createItem /api/v1/items |
|
| PATCH |
patchItemById /api/v1/items/{item_id} |
200 documents the successful-update case. A missing item instead answers 200 with a NotFoundBody; a malformed body or validation failure answers 200 with a SoftError… |
| GET |
getItemById /api/v1/items/{item_id} |
A missing item is not treated as a failure — it answers 200 with a NotFoundBody (found: false) instead of this schema, and never 404. |
| DELETE |
deleteItemById /api/v1/items/{item_id} |
Deleting an id that's already gone is not treated as a failure — it answers 200 with a NotFoundBody (found: false) instead of 404. |
| PUT |
putItemById /api/v1/items/{item_id} |
200 documents the replace-existing case. A malformed body or validation failure instead answers 200 with a SoftError (intended_status 400 or 422). |
| GET |
listItems /api/v1/items |
Returns a paginated window of items. An out-of-range limit/offset does not fail the request — it answers 200 with a SoftError body and intended_status 422 instead of this schema. |
| uploads | ||
| POST |
uploadFile /api/v1/uploads |
Documented here via multipart/form-data (the path exercised by Swagger UI's "Try it out" and by the load test client). The server also accepts a raw application/octet-stream body… |
demo pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|