Tip & Bill Splitter avatar

Tip & Bill Splitter

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Tip & Bill Splitter

Tip & Bill Splitter

A simple and flexible tool to calculate **tips and split bills** among multiple people. Supports custom splits, rounding, and currency formatting.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

2

Monthly active users

5 days ago

Last modified

Share

💵 Tip Calculator

A simple and flexible tool to calculate tips and split bills among multiple people. Supports custom splits, rounding, and currency formatting.


🚀 Features

  • Calculate tip based on bill amount and tip percentage
  • Split the total among multiple people
  • Optional custom split for each person
  • Round up per-person amounts for convenience
  • Supports custom currency symbols
  • Easy to integrate into automation pipelines or web apps

📥 Input Schema

FieldTypeRequiredDefaultDescription
billAmountnumber✅ YesTotal bill amount. Must be positive.
tipPercentagenumber❌ No15Tip percentage to apply. Range: 0–100.
numberOfPeopleinteger❌ No2Number of people splitting the bill. Minimum 1.
currencystring❌ No$Currency symbol for display.
roundUpboolean❌ NofalseRound up per-person amount to nearest whole number.
customSplitarray❌ No[]Optional custom amounts per person. Overrides equal split if provided.

🧮 Example

Input

{
"billAmount": 120,
"tipPercentage": 18,
"numberOfPeople": 3,
"currency": "$",
"roundUp": true,
"customSplit": []
}

Output

{
"totalTip": 21.6,
"totalAmount": 141.6,
"perPerson": 48
}

Custom Split Example

Input

{
"billAmount": 120,
"tipPercentage": 15,
"customSplit": [50, 30, 40]
}

Output

{
"totalTip": 18,
"totalAmount": 138,
"perPerson": [58, 48, 58]
}

🏗️ Use Cases

  • Restaurants or cafés splitting bills among friends
  • Event or group dining calculations
  • Integration into personal finance apps
  • Automation workflows for payment distribution

⚡ Notes

  • billAmount must be positive
  • customSplit overrides equal split automatically
  • Rounding only affects per-person amounts, not total tip

📄 License

MIT License