/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/unitprice-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/unitprice-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/unitprice-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/unitprice-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Currency-agnostic. Compare options must share a measure (all weight, all volume or all count).",
"units": {
"count": [
"each",
"item",
"pack"
],
"volume": [
"ml",
"cl",
"l",
"floz",
"pt",
"qt",
"gal",
"cup"
],
"weight": [
"mg",
"g",
"kg",
"oz",
"lb"
]
},
"service": "unitprice",
"endpoints": {
"/v1/unit": "Price per kg/litre/100g/item from a pack price, size and unit (with multipack count).",
"/v1/compare": "Rank several pack options by price per unit and report the saving vs the worst.",
"/v1/convert": "Convert a unit price (e.g. per lb) into the other bases for its measure."
},
"description": "Unit-price and best-value maths: normalise pack prices, compare options, and convert a unit price between bases."
},
"meta": {
"timestamp": "2026-06-04T01:59:20.372Z",
"request_id": "0dbb05cd-ce95-494e-9e0c-03d6ef4d8f9d"
},
"status": "ok",
"message": "Meta",
"success": true
}