Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/unitprice-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}