Learn how to set up MockBoost and create your first mock API in minutes.
Visit mockboost.com/register and sign up for a free DEV plan account. You'll get:
After signing in, you'll be prompted to create your first workspace. A workspace is where you organize your mock APIs and collaborate with your team.
# Navigate to dashboard
Dashboard → Create Workspace
# Enter workspace details
Name: My First Project
Click the "Create Endpoint" button to set up your first mock API endpoint.
Mock endpoints allow you to simulate real APIs without writing backend code. Here's how to create one:
Define your JSON response data. You can:
{
"users": [
{
"id": 1,
"name": "John Doe",
"email": "john@example.com",
"role": "developer"
},
{
"id": 2,
"name": "Jane Smith",
"email": "jane@example.com",
"role": "designer"
}
],
"total": 2,
"page": 1
}Once saved, MockBoost generates a unique URL for your endpoint:
https://api.mockboost.com/v1/workspaces/your-workspace-id/users
You can immediately start making requests to this URL from your application!
MockBoost supports powerful filtering capabilities to simulate real database queries:
Add query parameters to filter your mock data dynamically:
Filter by field:
GET /api/users?role=developerPagination:
GET /api/users?page=2&limit=10Sorting:
GET /api/users?sort=name&order=ascMockBoost uses PostgreSQL's JSONB indexing with GIN (Generalized Inverted Index) for lightning-fast queries:
To modify an existing endpoint:
💡 Changes take effect immediately - no deployment required!
Test error handling by changing the HTTP status code:
200 - Success400 - Bad Request401 - Unauthorized404 - Not Found500 - Server ErrorTo delete an endpoint permanently:
⚠️ Warning: This action cannot be undone. All associated logs will also be deleted.
Team members are managed at account level (Dashboard → Team). Only QA and PROD plans can invite; DEV is single-user.
💡 Invitees receive an email with a secure link to join. You can remove them per workspace from the same Team page.
OWNER
Full control: manage members, billing, delete workspace
ADMIN
Manage endpoints, invite members, view logs
MEMBER
Create and edit endpoints, view logs (read-only access)
From Dashboard → Team you can:
Now that you understand the basics, explore these advanced topics: