/v1/meta
Source & options
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}