Mock REST API returning sales executive data with pagination, sorting, and filtering.
A dummy REST API built using Node.js, Express, and Faker to simulate sales executive data for testing and front-end assignments.
- Pagination (
page,limit) - Sorting (
sort_by,order) - Filtering (
status,location)
npm install
npm start
Replace localhost with your backend deployed url - after deploying React Front End
http://localhost:4000/api/sales-executives
http://localhost:4000/api/sales-executives?page=2&limit=20
http://localhost:4000/api/sales-executives?status=Active&sort_by=progress_percentage&order=desc
You can deploy this app on platforms like Render or Railway. Just set:
- Build command:
npm install - Start command:
npm start