Skip to content
GET /v1/category

Browse a product category

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/beauty-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/beauty-api/v1/category" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/beauty-api/v1/category", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/beauty-api/v1/category");
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/category",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 20,
        "total": 1674,
        "results": [
            {
                "name": "Vichy Dercos Anti-Dandruff Kepek Karşıtı Şampuan 390 ml - Normal ve Yağlı Saçlar",
                "brands": [
                    "Vichy"
                ],
                "barcode": "8690595028064",
                "obf_url": "https://world.openbeautyfacts.org/product/8690595028064",
                "image_url": "https://images.openbeautyfacts.org/images/products/869/059/502/8064/front_tr.3.400.jpg"
            },
            {
                "name": "Shampoing solide Acorn",
                "brands": [
                    "Jil Doğal"
                ],
                "barcode": "8683143845435",
                "obf_url": "https://world.openbeautyfacts.org/product/8683143845435",
                "image_url": "https://images.openbeautyfacts.org/images/products/868/314/384/5435/front_fr.3.400.jpg"
            },
            {
                "name": "Dengeleyici Katı Şampuan / Yağlı Saçlar",
                "brands": [
                    "Polente Natural"
                ],
                "barcode": "8684000493318",
                "obf_url": "https://world.openbeautyfacts.org/product/8684000493318",
                "image_url": "https://images.openbeautyfacts.org/images/products/868/400/049/3318/front_fr.4.400.jpg"
            },
            {
                "name": null,
                "brands": [],
                "barcode": "8699708260216",
                "obf_url": "https://world.openbeautyfacts.org/product/8699708260216",
                "image_url": null
            },
            {
                "name": "Shampoing nutrition Ultra Doux Argan et camélia",
                "brands": [
                    "L'Oréal",
                    "L'Oreal Consumer products",
                    "Garnier"
                ],
                "barcode": "3600542525664",
                "obf_url": "https://world.openbeautyfacts.org/product/3600542525664",
                "image_url": null
            },
            {
                "name": "Shampoing nutrition Ultra Doux Avocat et Karité",
                "brands": [
                    "L'Oréal",
                    "L'Oreal Consumer products",
                    "Garnier"
                ],
                "barcode": "3600542571951",
                "obf_url": "https://world.openbeautyfacts.org/product/3600542571951",
                "image_url": "https://images.openbeautyfacts.org/images/products/360/054/257/1951/front_fr.8.400.jpg"
            },
            {
                "name": "Shampoing Réhydratant pour Cheveux déshydratés Hyaluron Repulp",
                "brands": [
                    "L'Oréal",
                    "L'Oreal Consumer products",
                    "L'Oréal Paris",
                    "Elseve"
                ],
                "barcode": "0360052414409",
                "obf_url": "https://world.openbeautyfacts.org/product/0360052414409",
          
…