Complete guide to all available endpoints and methods
All endpoints work with the following 10 built-in resource types:
You can now create up to 2 custom endpoints with your own collection names and CRUD operations.
Note: Custom endpoints work exactly like the built-in resources below, but with your own collection name!
Include your token in the request header:
Get your token from the main dashboard after logging in.
After retrieving your endpoint URL, you'll need to use API testing tools to insert, update, or delete data:
https://mock-api.com/api/products)Authorization: Bearer YOUR_TOKEN💡 Tip: You can view your data anytime using GET requests in your browser or in the dashboard, but for creating, updating, or deleting data, you'll need to use tools like Postman.
GET /api/products
returns all your products.
GET /api/products/abc123 returns the
product with ID "abc123".
POST /api/products with product data creates a new
product.
PUT /api/products/abc123 updates the product with ID
"abc123".
DELETE /api/products/abc123 deletes only the product
with ID "abc123".
This only affects one item. Always use this when you want to delete a specific item.
DELETE /api/products deletes ALL your products.
This will delete ALL your data from this endpoint:
Double-check before using! If you want to delete just one
item, use DELETE /api/{resource}/:id instead.
DELETE /api/products/YOUR_ITEM_ID
DELETE /api/products (no ID)
All endpoints return responses in this format:
For deleteAll operations, the response includes: