ForHosting KIT · Developer Utilities

Tile edge trim calculator

This tile edge trim calculator turns the exposed sides of a tiled wall or floor into a practical linear-foot requirement for metal edging, profile trim, pencil tile, or bullnose.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter each exposed edge in one consistent unit, choose a waste allowance, and optionally provide the length of a stock piece. The result separates measured footage from waste-adjusted footage and, when possible, rounds the order up to whole pieces. It is useful for backsplashes, shower surrounds, niches, steps, and floor transitions where only selected sides need a finished edge. Run it free in the browser or use the deterministic API for $0.002 per successful request.

Measure only the tile edges that will remain exposed

Start by identifying every tiled edge that will be visible after cabinets, walls, fixtures, thresholds, and adjoining finishes are installed. A backsplash may need trim along its top and two short outside ends, while the bottom edge disappears behind the countertop and needs no decorative finish. A shower niche can have four front-facing edges, but a tiled wall that terminates into an inside corner may need trim only at its open vertical side. Measure those exposed runs separately and enter every length once. Do not automatically use the full perimeter of the tiled area: perimeter and exposed edge are different quantities, and using the perimeter can substantially overstate the order. All entered lengths must share the selected measurement unit. The calculator accepts inches, feet, centimeters, or meters and converts the sum into linear feet for purchasing. It returns the number of edges included, the measured linear feet, the explicit waste amount, and the final required linear feet. This makes the take-off easy to audit against a sketch. Curves should be measured along their actual path with a flexible tape, and complicated corners should be broken into short measurable runs rather than approximated from tile area. The calculator cannot decide whether an edge is exposed; that judgment comes from the finished layout and installation detail.

Use waste and stock lengths to turn measurements into an order

The measured run is the geometric minimum, not always the amount you should buy. Tile edging and bullnose can be lost to miters, chipped cuts, pattern alignment, damaged glaze, unsuitable factory ends, or offcuts that are too short for the next visible section. The waste percentage adds a transparent allowance to the measured linear feet. Ten percent is the default, but a simple installation with long straight runs may justify less, while a niche, stepped wall, diagonal pattern, or layout with many outside corners may justify more. Keep that choice tied to the actual cutting plan rather than treating waste as a universal rule. If you know the supplier's stock length, enter it in feet. The calculator divides waste-adjusted footage by that length and rounds up to a whole-piece count, then reports the purchased footage represented by those pieces. For individual bullnose tiles, convert one piece's finished edge length to feet and use that as the stock length; for example, a twelve-inch bullnose has a piece length of one foot. Confirm whether a corner piece, end cap, or transition connector replaces part of a straight run, because specialty fittings are normally counted separately. The output does not optimize a cutting schedule, so numerous short edges may require additional pieces even when their total footage appears sufficient.

Apply the result to walls, floors, niches, and estimating workflows

For a backsplash, record the top run and any open side returns, then exclude edges hidden by a cabinet, countertop, or adjacent wall. For a shower surround, include outside vertical terminations, curb edges, bench fronts, and niche borders only when the chosen tile detail calls for trim or bullnose there. Floor installations commonly need edging at an exposed step, platform, fireplace border, or transition where a tile profile protects the cut edge; an ordinary doorway may instead use a threshold whose required width is specified separately. Contractors can save the response with a room take-off because it shows both the field measurement and the allowance rather than only a final shopping number. Estimating software can pass measured edge arrays from a drawing and receive stable output without recreating unit conversion or rounding rules. The same inputs always produce the same response: there are no network calls, current prices, random values, or date-sensitive assumptions. The browser calculation is free, while an API request costs $0.002 when you want to automate repeated estimates. Before purchasing, verify the trim depth against tile thickness, the finish and profile against the design, and the available stock or bullnose dimensions against the value entered. Linear footage answers how much finished edge is needed; it does not select the right product or certify an installation detail.

Backsplash exposed-edge take-off

Add the visible top and side runs of a backsplash while excluding edges hidden by counters, cabinets, and adjoining walls.

Shower niche and surround trim

Total niche borders, curb edges, bench fronts, and open wall terminations before ordering profiles or bullnose.

Floor transition and step edging

Estimate protective trim along exposed tile at platforms, steps, fireplace borders, and selected transitions.

What does the tile edge trim calculator cost?

It is free to run in the browser. Each successful API request costs $0.002; invalid input is not charged.

Which tile edges should I include?

Include only visible edges that require trim or bullnose after adjoining surfaces and fixtures are installed. Do not automatically enter the full tile perimeter.

Can I enter measurements in inches or metric units?

Yes. Choose inches, feet, centimeters, or meters and use that unit for every edge. Results are normalized to linear feet.

Does the result include waste?

Yes. Waste defaults to 10 percent and can be set from 0 to 100 percent. The response shows measured footage, waste footage, and required footage separately.

How do I calculate the number of bullnose pieces?

Provide the finished edge length of one piece in feet as piece_length_feet. The calculator rounds the waste-adjusted footage up to whole pieces.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/home/tile-edge-trim

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/home/tile-edge-trim \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"edge_lengths":[36,60,36]}'
{
  "edge_lengths": [
    36,
    60,
    36
  ]
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "home.tile_edge_trim",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

max_edges1000
max_length1000000
HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →