/v1/meta
Source & options
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/beauty-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/beauty-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/beauty-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/beauty-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Cosmetics & personal-care products. /v1/product = look up by barcode (name, brand, INCI ingredients, categories, labels, period-after-opening, vegan/palm-oil analysis, image); /v1/search = full-text product search; /v1/category = browse a category (e.g. shampoos, lipsticks, deodorants, sunscreens). Open data, contributor-maintained — coverage and completeness vary by product.",
"source": "Open Beauty Facts — the open cosmetics & personal-care product database (world.openbeautyfacts.org)",
"endpoints": [
"/v1/product",
"/v1/search",
"/v1/category",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-05-31T15:22:26.025Z",
"request_id": "30c0e279-c718-4035-843a-16e3eb7fce14"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}