# ScentPulse Fragrance Reformulation Checker

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

Checks whether a fragrance has been reformulated since its original release, using IFRA amendment history, community-documented vintage-vs-current differences, and batch-code-derived production year analysis.

## Facts

- Endpoint: GET https://scentpulse-xi.vercel.app/api/scent/reformulation-check
- Price: $0.12/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-reformulation-checker-07d83a4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2vi9yQiGN2bVj65R4w44U

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-reformulation-checker-07d83a4c
```

Example prompt: Can you check if Creed Aventus has been reformulated since its original release? I have a batch code of 21P01 — does that put my bottle before or after the known formula changes, and what IFRA-driven ingredient differences should I know about?

## When to prefer this

Choose this endpoint when a user needs to verify whether a specific fragrance has changed formulation over time, especially when a batch code is available for precise production-year mapping. Prefer this over generic fragrance note lookups when the core question is about formula authenticity, vintage vs current quality differences, or IFRA-compliance-driven ingredient substitutions. Ideal for pre-purchase due diligence on secondary market bottles or collector authentication.

## Known failure modes

- Fragrance not found in database — returns null or not-found status for obscure niche or indie releases
- Batch code not recognized — production year cannot be derived, reformulation timeline still returned without batch mapping
- Reformulation history uncertain — community documentation sparse, returns low-confidence flag
- IFRA amendment data incomplete for very old reformulations pre-dating systematic tracking
- Ambiguous fragrance name (e.g. multiple flankers or regional variants) — may require additional disambiguation parameter

## How this service works

Fragrance reformulation checker — has this scent changed since its original release? IFRA-amendment-driven ingredient changes, community-documented vintage-vs-current differences, and how a batch-code-derived production year lines up against known reformulation events.

## Output

Returns a reformulation status (reformulated / unchanged / uncertain), a timeline of known reformulation events with approximate dates, IFRA amendment references that drove ingredient changes, community-documented differences between vintage and current versions, and — if a batch code is provided — the derived production year mapped against those reformulation events to indicate which formula version the bottle likely contains.

## 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": "Chanel | Thierry Mugler | Creed (optional)"
      },
      "fragrance": {
       "type": "string",
       "description": "Chanel No. 5 | Angel | Aventus (required — fragrance to check)"
      },
      "batch_year_hint": {
       "type": "string",
       "description": "optional — a production year from a prior batch-check call"
      }
     }
    }
   },
   "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": "Chanel No. 5",
  "reformulation_status": "known reformulated"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-fragrance-reformulation-checker-07d83a4c/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)
