ForHosting KIT · Developer Utilities

Aircraft fuel burn calculator

This aircraft fuel burn calculator estimates the fuel needed for a planned flight and adds a separate reserve allowance.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter the planned flight time, the aircraft's expected hourly fuel-burn rate, and the reserve duration required for your planning context. The result shows trip fuel, reserve fuel, total fuel, and total endurance in one consistent unit. It is useful for preliminary calculations and cross-checks, but it does not replace an approved flight plan, aircraft performance data, or the rules that apply to a particular operation.

Start with a realistic time and burn rate

The calculation begins with two operational estimates: planned flight time and hourly fuel burn. Enter flight time in decimal hours, so two hours and thirty minutes becomes 2.5 hours. The hourly rate must use the same unit you want in the answer, whether that is US gallons, liters, kilograms, or pounds. The calculator multiplies those values to produce trip fuel. Accuracy therefore depends on the quality of both inputs. Use a burn rate appropriate to the aircraft, engine setting, altitude, mixture or power-management technique, and phase mix expected for the flight. A single cruise figure may understate fuel when climb, taxi, holding, or other high-consumption periods are significant. For operational planning, derive the rate and time from approved aircraft information and your organization's procedures. This tool performs transparent arithmetic; it does not infer weather, routing, aircraft loading, engine condition, or a fuel density conversion. Keeping the selected unit unchanged avoids quietly mixing volume and mass, a mistake that can make an otherwise neat result unsafe.

Add the reserve as an endurance allowance

Reserve is entered as minutes of additional endurance. The calculator converts those minutes to hours, multiplies them by the same hourly burn rate, and reports reserve fuel separately from trip fuel. For example, a 45-minute allowance is 0.75 hour, so an aircraft burning 48 US gallons per hour needs 36 US gallons for that entered reserve. Separating the values makes the assumption easy to inspect and change. The default is 30 minutes only as a convenient starting value, not as a statement of what any regulation requires. Applicable reserve rules can depend on flight rules, destination and alternate requirements, day or night operation, aircraft category, jurisdiction, operator approvals, weather, and contingencies. Some planning systems also distinguish contingency, alternate, final reserve, additional, taxi, unusable, and discretionary fuel. If those categories apply, calculate or add them according to the authoritative procedure rather than treating this one reserve field as a complete legal fuel plan. Always verify the current requirement with the governing authority and approved manuals.

Read and use the result responsibly

The output presents trip fuel, reserve fuel, and their sum as total fuel. It also shows reserve time in hours and the combined endurance represented by the entered flight and reserve durations. These fields are useful for checking a dispatch worksheet, testing how a longer route changes uplift, or comparing scenarios with different expected burn rates. Results are rounded to six decimal places for stable, repeatable output, although real fuel measurements and performance data are rarely meaningful to that precision. No unit conversion is performed: if the hourly rate is kilograms per hour, every fuel result is in kilograms; if it is liters per hour, every result is in liters. The total is not automatically adjusted for taxi fuel, start and warm-up, climb-specific consumption, unusable fuel, alternate routing, delays, wind, temperature, degradation, minimum dispatch quantities, or tank limitations. Treat it as one clearly defined arithmetic check within a fuller planning process. Before flight, reconcile the result against approved performance data, actual conditions, fuel-on-board measurements, and all applicable operational requirements.

Cross-check a flight-planning worksheet

Independently reproduce trip and entered reserve fuel from the planned duration and published hourly burn assumption.

Compare reserve scenarios

Change the reserve duration to see its direct effect on required fuel and total endurance without mixing it into trip fuel.

Estimate fuel for training exercises

Demonstrate the relationship between time, hourly consumption, and reserve allowance using mass or volume units.

What does the calculator cost?

It runs free in the browser. API requests cost $0.002 each.

Does the default reserve satisfy aviation regulations?

Not necessarily. The 30-minute default is only a planning convenience; select the reserve required by the current rules, approvals, and procedures for the specific flight.

Does flight time include the reserve period?

No. Enter planned flight time without reserve. The calculator adds the selected reserve duration separately.

Can I use gallons, liters, kilograms, or pounds?

Yes. Choose the unit that matches the hourly burn rate. The calculator preserves that unit and does not convert between volume and mass.

Does total fuel include taxi, alternate, contingency, or unusable fuel?

Only if those effects are already represented in your entered time or burn assumptions. Add and validate any separately required fuel categories under the applicable planning method.

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/travel/aircraft-fuel-burn

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/travel/aircraft-fuel-burn \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"flight_time_hours":2.5,"hourly_fuel_burn":48}'
{
  "flight_time_hours": 2.5,
  "hourly_fuel_burn": 48
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "travel.aircraft_fuel_burn",
  "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.

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 →