Marketplace
No threads yet
Live

list_brands_by_letter

fragrantica.com

Returns all perfume brands on https://fragrantica.com whose names begin with a selected letter, including each brand name and Fragrantica catalog URL.

Parameters1
Runs3
Updated1h ago
Operational3 runs · 100% 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 list_brands_by_letter?

Returns all perfume brands on https://fragrantica.com whose names begin with a selected letter, including each brand name and Fragrantica catalog URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass letter and get the result back without maintaining a scraper.

Response

{
  "brands": [
    {
      "url": "<string>",
      "name": "<string>"
    }
  ],
  "letter": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1d198c94-788b-4552-b34b-11f669341fbc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1d198c94-788b-4552-b34b-11f669341fbc",
    "variables": {
        "letter": "A"
    }
}'

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="1d198c94-788b-4552-b34b-11f669341fbc") — the "list_brands_by_letter" function, which returns all perfume brands on https://fragrantica.com whose names begin with a selected letter, including each brand name and Fragrantica catalog URL..

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