Templates
Using template placeholders for dynamic data generation
Templates
Tabby supports template placeholders that generate dynamic data for each request.
Available Placeholders
| Placeholder | Description | Example Output |
|---|---|---|
{{name}} | Random full name | John Smith |
{{firstName}} | Random first name | John |
{{lastName}} | Random last name | Smith |
{{email}} | Random email address | john.smith@example.com |
{{uuid}} | Random UUID v4 | 550e8400-e29b-41d4-a716-446655440000 |
{{phone}} | Random phone number | +1-555-123-4567 |
{{int}} | Random integer | 42 |
{{float}} | Random float | 3.14159 |
{{bool}} | Random boolean | true |
{{date}} | Random date | 2024-01-15 |
{{timestamp}} | Current timestamp | 1705312800 |
Inline Templates
Use placeholders directly in the request body:
Template Files
Create a JSON file with placeholders:
Use the template file:
Combined with Loop Mode
Generate 50 unique users:
Each of the 50 requests will have completely different generated values.