/v1/burn
Burn-time estimate
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/candle-api/v1/burn" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/candle-api/v1/burn", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/candle-api/v1/burn");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/candle-api/v1/burn",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Burn time ≈ wax grams ÷ burn rate. A typical container candle burns ~7–9 g of wax per hour; bigger wicks burn faster. Measure your own rate for accuracy.",
"inputs": {
"burn_rate": 8,
"wax_grams": 180
},
"burn_time_hours": 22.5,
"burn_time_formatted": "22h 30m"
},
"meta": {
"timestamp": "2026-06-06T07:14:11.965Z",
"request_id": "30089111-a333-484d-942a-bb018009bcf9"
},
"status": "ok",
"message": "Burn time",
"success": true
}