# ScentPulse Fragrance Reformulation Checker

> ScentPulse Fragrance Reformulation Checker is a paid API for AI agents from scentpulse.theaslangroupllc.com, 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, combining IFRA-amendment-driven ingredient changes, community-documented vintage-vs-current differences, and batch-code-derived production year analysis against known reformulation events.

## Facts

- Endpoint: GET https://scentpulse.theaslangroupllc.com/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-1222b7fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YnXWcjf5X6Q4AROAT33cm

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-1222b7fd
```

Example prompt: Can you check if Dior Sauvage has been reformulated since its original release — I have a bottle with batch code X3B142 and I want to know if my production year lines up with any known IFRA or formula changes?

## When to prefer this

Use this endpoint when a user wants to know if a specific fragrance has changed formulation over time, especially if they have a batch code to verify production year or want to understand IFRA-compliance-driven ingredient substitutions. Prefer over general fragrance info APIs when the core question is vintage-vs-current authenticity or formula integrity.

## Known failure modes

- Unknown fragrance name or brand returns no match found
- Unrecognizable or malformed batch code cannot be decoded for production year
- Fragrance with no documented reformulation events returns clean/unchanged status
- Very obscure or niche fragrances may have limited community data and lower confidence
- Network or payment failure returns HTTP 402 or 5xx

## 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 assessment including whether the fragrance has changed since its original release, specific IFRA-amendment-driven ingredient changes, community-documented differences between vintage and current versions, the production year inferred from the batch code, and how that year maps to known reformulation events in the fragrance's history.

## 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-1222b7fd/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)
