# ScentPulse Fragrance Dupe Finder

> ScentPulse Fragrance Dupe Finder is a paid API for AI agents from scentpulse-xi.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns ranked clone/dupe candidates for a given fragrance from brands like Lattafa, Armaf, Alexandria, Dossier, and ALT, with note-similarity scores and longevity/quality trade-off assessments versus the original.

## Facts

- Endpoint: GET https://scentpulse-xi.vercel.app/api/scent/dupe-match
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scentpulse-fragrance-dupe-finder-8e2f3298
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cNn4EMdyHFet9-A4teHpb

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability scentpulse-fragrance-dupe-finder-8e2f3298
```

Example prompt: What are the best dupes for Baccarat Rouge 540 — I want ranked clone candidates from brands like Lattafa, Armaf, or Dossier with how close they smell and whether the longevity holds up compared to the original?

## When to prefer this

Choose this endpoint when a user explicitly wants affordable alternatives, dupes, or clone versions of a specific named fragrance, and needs ranked options with similarity scoring and trade-off context. Prefer this over a general note-profile lookup when the goal is budget substitution rather than pure fragrance information. Best suited for comparison-shopping within the inspired-by and clone fragrance market.

## Known failure modes

- Fragrance name not recognized or too ambiguous — returns no matches or a disambiguation prompt
- Very obscure or regional fragrance with no known inspired-by equivalents — empty ranked list
- Misspelled fragrance name causing lookup failure
- Fragrance too new to have established clones in the ecosystem — limited or no results
- Rate limit or payment authorization failure returning 402 or 429 status

## How this service works

Fragrance dupe/clone finder — ranked clone candidates from Lattafa, Armaf, Alexandria Fragrances, Dossier, ALT and the wider inspired-by ecosystem, with note-similarity scoring and an honest longevity/quality trade-off assessment versus the original.

## Output

A ranked list of clone and dupe fragrance candidates sourced from brands such as Lattafa, Armaf, Alexandria Fragrances, Dossier, and ALT, each scored for note-profile similarity to the original. Includes an honest longevity and quality trade-off assessment comparing the dupe to the source fragrance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | ar | ja | ko | zh | pt"
      },
      "brand": {
       "type": "string",
       "description": "Maison Francis Kurkdjian | Dior (optional)"
      },
      "budget": {
       "type": "string",
       "description": "optional"
      },
      "fragrance": {
       "type": "string",
       "description": "Baccarat Rouge 540 | Oud Satin Mood | Miss Dior (required — fragrance to find dupes for)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "candidates": [
   {
    "dupe_name": "Lattafa Ameer Al Oudh",
    "how_close": "close",
    "dupe_house": "Lattafa"
   }
  ],
  "target_fragrance": "Baccarat Rouge 540"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-fragrance-dupe-finder-8e2f3298/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scentpulse-xi.vercel.app](https://www.zero.xyz/host/scentpulse-xi.vercel.app/llms.txt)
