/v1/meta
Spec
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/candle-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/candle-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"notes": "Metric: millilitres (container water volume), grams, percent. Wax density defaults by type (soy 0.9, beeswax 0.96…). A planning aid — pour tests and your wax's datasheet always win.",
"service": "candle-api",
"endpoints": {
"GET /v1/burn": "Estimated burn time from wax weight and a burn rate.",
"GET /v1/meta": "This document.",
"GET /v1/recipe": "Wax and fragrance grams for N containers from volume, fill %, wax type and fragrance load."
},
"description": "Candle-making maths: wax and fragrance for a set of containers, and burn-time estimation."
},
"meta": {
"timestamp": "2026-06-06T07:14:12.174Z",
"request_id": "552380a5-57ca-4659-87ce-aa12125b7a2b"
},
"status": "ok",
"message": "Meta",
"success": true
}