Restmancer API Documentation

Conjuring Fake REST APIs for Real Dev Work

General Documentation

Restmancer is a free fake REST API for testing, prototyping, or learning purposes. It provides realistic mock data for various resources like users, blogs, products, and more.

  • Supports only: GET requests
  • Query Support: Limit and fields
  • Output: JSON-formatted mock data
  • Use case: Frontend development, practice with fetch/Axios, sandbox testing

All endpoints are available under the base path:
https://restmancer.vercel.app/api

Getting Started

Base URL for all endpoints:

https://restmancer.vercel.app/api

Example usage:

Endpoint Description
GET /users List all users
GET /blogs List all blog posts
GET /todolist List all to-do items
GET /products List all products
GET /weather Get mock weather data
GET /movies List mock movies
GET /books List mock books
GET /course List mock courses
GET /vehicle List mock vehicles
GET /songs List mock songs/music
GET /restaurant List mock restaurants

Query Parameters

Use query parameters for better control:

  • ?limit=5 – Limit number of results
  • ?fields=name,email – Select specific fields
  • ?limit=3&fields=title,author – Combine queries