{"slug":"split-bill","name":"Split Bill","category":"fortune","tags":["spending"],"tagline":"Even split with tip, rounded so nobody argues.","endpoint":"https://xearno.tools/api/v1/tools/split-bill","page":"https://xearno.tools/t/split-bill","description":"Splits a bill evenly across people with an optional tip, and shows the clean rounded amount plus who covers the remainder.","inputSchema":{"type":"object","properties":{"total":{"description":"Bill total","type":"number","minimum":0.01,"default":186.4},"people":{"description":"People","type":"number","minimum":1,"maximum":200,"default":4},"tip":{"description":"Tip (%)","type":"number","minimum":0,"maximum":100,"default":0}},"required":[],"additionalProperties":false},"methodology":["Per-person = total × (1 + tip%) ÷ people, rounded up to the cent so the bill is always covered.","The overshoot from rounding is reported explicitly instead of silently vanishing."],"usage":"POST https://xearno.tools/api/v1/tools/split-bill with a JSON body matching inputSchema."}