Quick Start Guide
Get up and running with Reqbeam in 5 minutes.
Step 1: Installation
If you haven’t installed Reqbeam yet, follow the Installation Guide.
Step 2: Start the Application
npm run dev
The application will start on http://localhost:3000
Step 3: Create an Account
- Open http://localhost:3000 in your browser
- Click “Sign Up” or “Sign In”
- Create an account with your email and password
- Or sign in with Google OAuth (if configured)
Step 4: Create a Workspace
- After logging in, you’ll be prompted to create a workspace
- Enter a workspace name (e.g., “My API Project”)
- Optionally add a description
- Click “Create Workspace”
Step 5: Create Your First Request
- Click the “New Request” button
- Select HTTP method (e.g., GET)
- Enter an API URL (e.g.,
https://api.github.com/users/octocat) - Click “Send”
- View the response in the response viewer
Step 6: Save to Collection
- After sending a request, click “Save”
- Choose or create a collection
- Give your request a name
- Click “Save”
Using Environment Variables
- Go to Environments section
- Click “Add Environment”
- Enter environment name (e.g., “Development”)
- Add variables (e.g.,
API_URL=https://api.example.com) - Use variables in requests:
/users
Using the CLI
- Install CLI (see Installation Guide)
- Authenticate:
rb auth login - Create a workspace:
rb workspace create my-project - Add environment:
rb env add development -i - Create request:
rb request create -n "Get Users" -m GET -u "/users" - Run request:
rb run request "Get Users"
Next Steps
- Read the Workspace Feature Documentation
- Learn about Authorization System
- Explore CLI Documentation
- Check out Keyboard Shortcuts