Live
list_fragrance_notes_catalog
fragrantica.comReturns the complete fragrance-note catalog from https://fragrantica.com grouped by category, with every note name, Fragrantica URL, and image.
Parameters0
Runs3
Updated53m ago
Operational3 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_fragrance_notes_catalog?
Returns the complete fragrance-note catalog from https://fragrantica.com grouped by category, with every note name, Fragrantica URL, and image. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"categories": [
{
"name": "<string>",
"notes": [
{
"url": "<string>",
"name": "<string>",
"image": "<string>"
}
]
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/c25b750c-f0f4-43c4-9e6b-d3108c2dc91b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c25b750c-f0f4-43c4-9e6b-d3108c2dc91b",
"variables": {}
}'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="c25b750c-f0f4-43c4-9e6b-d3108c2dc91b") — the "list_fragrance_notes_catalog" function, which returns the complete fragrance-note catalog from https://fragrantica.com grouped by category, with every note name, Fragrantica URL, and image.. It takes no parameters. Return the result as structured JSON.