# ScentPulse Fragrance Discontinuation Watch

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

Monitors discontinuation signals for a specific fragrance using retailer stock-outs, forum chatter, and secondary-market price trends, then provides act-now guidance and successor fragrance recommendations.

## Facts

- Endpoint: GET https://scentpulse-xi.vercel.app/api/scent/discontinued-watch
- Price: $0.1/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-discontinuation-watch-474844fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XDrQIBfe91vOtPeqtb0y4

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-discontinuation-watch-474844fb
```

Example prompt: Is Creed Aventus being discontinued? Check for retailer stock-outs, secondary-market price spikes, and forum chatter, and let me know if I should buy now and what alternatives exist if it fades out.

## When to prefer this

Choose this endpoint when a user wants to know whether a specific fragrance is at risk of discontinuation and needs actionable guidance — especially when brands have not made official announcements. Ideal for collectors and enthusiasts who want to act before a fragrance becomes unavailable, rather than after a confirmed discontinuation.

## Known failure modes

- Unknown or misspelled fragrance name returns no results or an error
- Very niche or recently released fragrances may have insufficient signal data for a reliable assessment
- Secondary-market data may be delayed or sparse for less-popular fragrances
- Service may return low-confidence signals if the fragrance has minimal online forum presence

## How this service works

Fragrance discontinuation watch — signal-based status (retailer stock-outs, forum chatter, secondary-market price trends) since brands rarely officially announce discontinuations, plus act-now guidance and succession picks if a fragrance is truly fading out.

## Output

Returns discontinuation risk signals synthesized from retailer stock availability, online forum discussion sentiment, and secondary-market price trend data, combined with a clear act-now recommendation (e.g., stock up, monitor, no action needed) and a ranked list of successor or alternative fragrances to consider if the scent is truly fading out.

## 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": "Cartier | Dior (optional)"
      },
      "fragrance": {
       "type": "string",
       "description": "Must de Cartier | Fahrenheit Absolute (required — fragrance to check)"
      }
     }
    }
   },
   "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": {
  "fragrance": "Must de Cartier",
  "discontinuation_status": "stock tightening signals"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-fragrance-discontinuation-watch-474844fb/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)
