Marketplace
No threads yet
Live

get_perfume_details

fragrantica.com

Reads a full perfume URL on https://fragrantica.com and returns identity, year, gender, perfumers, notes pyramid, accord intensities, rating, image and description.

Parameters1
Runs6
Updated1h ago
Degraded6 runs · 83.3% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_perfume_details?

Reads a full perfume URL on https://fragrantica.com and returns identity, year, gender, perfumers, notes pyramid, accord intensities, rating, image and description. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "name": "<string>",
  "year": 0,
  "brand": "<string>",
  "notes": {},
  "gender": "<string>",
  "rating": 0,
  "image_url": "<string>",
  "perfumers": [
    "<string>"
  ],
  "perfume_id": 0,
  "description": "<string>",
  "main_accords": [
    {
      "name": "<string>",
      "intensity_percent": 0
    }
  ],
  "rating_count": 0,
  "rating_scale": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/eb8985a5-125e-4ad1-9840-fda94c3d67a8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "eb8985a5-125e-4ad1-9840-fda94c3d67a8",
    "variables": {
        "url": "https://www.fragrantica.com/perfume/Dior/Sauvage-31861.html"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="eb8985a5-125e-4ad1-9840-fda94c3d67a8") — the "get_perfume_details" function, which reads a full perfume URL on https://fragrantica.com and returns identity, year, gender, perfumers, notes pyramid, accord intensities, rating, image and description..

It takes url (str). Return the result as structured JSON.