/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}