Conjuring Fake REST APIs for Real Dev Work
Restmancer is a free fake REST API for testing, prototyping, or learning purposes. It provides realistic mock data for users and blogs with plans to expand into more resources.
GET requests
All endpoints are available under the base path:
https://restmancer.vercel.app/api
Base URL for all endpoints:
https://restmancer.vercel.app/api
Example usage:
GET /users – List all usersGET /blogs – List all blog postsGET /todolist – List all to-do itemsGET /products – List all productsGET /weather – Get mock weather dataGET /movies – List mock moviesGET /books – List mock booksGET /course – List mock coursesGET /vehicle – List mock vehiclesGET /songs – List mock songs/musicGET /restaurant – List mock restaurantsUse query parameters for better control:
?limit=5 – Limit number of results?field=name,email – Select specific fields?limit=3&field=title,author – Combine queries