/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}