Meeting ROI Tool
Meeting Cost Calculator
See the real dollar cost of your meetings in real-time. Add attendees, set rates, and start the timer.
1.0h
Attendees2
$/hr
$/hr
Total Meeting Cost
$195.00
Moderate
Breakdown
Cost / minute$3.25
Cost / hour$195.00
Effective cost (65% productive)$300.00
Per Person
Alice$100.00
Bob$95.00
Equivalent To
☕35 coffees
🧰7 SaaS subscriptions
👨💻1.9 dev-hours
REST API
Integrate meeting cost calculation into your apps
# POST /api/v1/meeting-cost
curl -X POST https://tulz.org/api/v1/meeting-cost \
-H "Content-Type: application/json" \
-d '{"attendees":[{"name":"Alice","role":"Engineer","hourlyRate":100}],"durationMinutes":60}'
// Response
{
"totalCost": 100.00,
"costPerMinute": 1.67,
"costPerHour": 100,
"effectiveCost": 153.85,
"attendees": 1,
"durationMinutes": 60,
"breakdown": [{"name":"Alice","role":"Engineer","cost":100}]
}