# Fragrantica (Italy) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for perfumes and retrieve detailed information including fragrance notes, accords, olfactory family, perfumer, year of release, and community ratings from Fragrantica.

**Category:** Reviews & Ratings | **Website:** [fragrantica.it/](https://fragrantica.it/) | **Docs:** [parse.bot/marketplace/d1b92856-46ce-4518-828f-e1452d4f67a8/fragrantica-it-api](https://parse.bot/marketplace/d1b92856-46ce-4518-828f-e1452d4f67a8/fragrantica-it-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-fragrantica-it-api-d1b92856/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fragrance_details

Extract comprehensive fragrance data from a single Fragrantica perfume page. Returns the full composition (top/heart/base notes), main accords with relative strengths, rating with vote count, perfumer, olfactory family, and release year. The input URL is typically obtained from search_fragrances results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the perfume page on fragrantica.it (from search_fragrances results[*].url). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fragrantica-it-api-d1b92856/get_fragrance_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_fragrances

Full-text search over Fragrantica's perfume catalog via Algolia. Returns lightweight summaries (name, brand, URL, image, year) suitable for browsing or drilling into details. Each result carries a canonical URL that serves as the identity for fetching full fragrance data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search keyword matching fragrance names and brands (e.g. 'Sauvage', 'Chanel No 5'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fragrantica-it-api-d1b92856/search_fragrances \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
