# ScentPulse Fragrance Dupe/Clone Finder

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

Returns ranked fragrance dupe and clone candidates for a given original scent, with note-similarity scoring and longevity/quality trade-off analysis versus the original.

## Facts

- Endpoint: GET https://scentpulse.theaslangroupllc.com/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-clone-finder-29e02366
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JgCDZwAIMVyFKu_l4o3dc

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-clone-finder-29e02366
```

Example prompt: Can you find me the best-ranked dupes for Baccarat Rouge 540 — I want to see which Lattafa, Armaf, or Alexandria Fragrances clones are closest by notes, and how they compare in longevity and quality vs the original?

## When to prefer this

Use this endpoint when a user wants affordable or accessible alternatives to a specific designer or niche fragrance, especially when they want objective note-similarity scoring and honest longevity/quality comparisons across the major dupe houses (Lattafa, Armaf, Alexandria Fragrances, Dossier, ALT). Prefer this over generic fragrance search endpoints when the query is explicitly about clones, dupes, or inspired-by alternatives rather than the original scent itself.

## Known failure modes

- Fragrance name not recognized or too ambiguous — returns empty or low-confidence results
- No known dupes exist in the inspired-by ecosystem for the specified scent
- Misspelled or unofficial fragrance names fail to match the internal database
- Very niche or limited-edition fragrances may return sparse results

## 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 fragrance clone/dupe candidates from houses like Lattafa, Armaf, Alexandria Fragrances, Dossier, and ALT, each with a note-similarity score and an honest assessment of longevity and quality trade-offs compared to the original 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-clone-finder-29e02366/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scentpulse.theaslangroupllc.com](https://www.zero.xyz/host/scentpulse.theaslangroupllc.com/llms.txt)
