# ScentPulse Blind-Buy Risk Score

> ScentPulse Blind-Buy Risk Score 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).

Returns a composite blind-buy risk score for a fragrance, combining polarizing-note flags, review-sentiment spread, reformulation history, discontinuation risk, counterfeit prevalence, and price exposure context.

## Facts

- Endpoint: GET https://scentpulse.theaslangroupllc.com/api/scent/blind-buy-risk
- 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-blind-buy-risk-score-d3aa281a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1VO5IVs5DnQRHG1sz5sed

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-blind-buy-risk-score-d3aa281a
```

Example prompt: What's the blind-buy risk score for Dior Sauvage Eau de Parfum? I'm thinking of ordering a bottle for around $120 without smelling it first — give me the full breakdown including any reformulation flags, counterfeit risk, and how polarizing the reviews are.

## When to prefer this

Use this endpoint when a user is considering purchasing a fragrance online without the ability to test it in person and wants a data-driven risk assessment before committing money. Prefer this over generic review aggregators when you need a single actionable risk score that synthesizes reformulation history, discontinuation signals, counterfeit risk, and sentiment polarization into one composite output with price context.

## Known failure modes

- Fragrance not found in database — returns 404 or empty result for obscure niche or indie house releases
- Ambiguous fragrance name with multiple matching entries — may require house/concentration disambiguation
- Insufficient review data for very new releases — sentiment spread score may be low-confidence
- Price exposure context unavailable if price parameter not supplied
- Counterfeit prevalence data may lag for newly counterfeited releases

## How this service works

Blind-buy risk score for a fragrance you have not sniffed — composite score from polarizing-note flags, review-sentiment spread, batch-variation and reformulation history, discontinuation risk, and counterfeit prevalence, with price exposure context.

## Output

A composite blind-buy risk score with sub-scores and flags covering: polarizing note analysis, review-sentiment spread (how divisive opinions are), batch-variation and reformulation history, discontinuation risk signal, counterfeit prevalence rating, and price-exposure context relative to the risk level.

## 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": "Dior | YSL | Creed (optional)"
      },
      "fragrance": {
       "type": "string",
       "description": "Fahrenheit | Kouros | Original Santal (required — fragrance to assess)"
      },
      "price_paid_usd": {
       "type": "string",
       "description": "optional — how much you paid, to frame price exposure"
      }
     }
    }
   },
   "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": "Fahrenheit",
  "risk_band": "moderate",
  "risk_score": 55
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-blind-buy-risk-score-d3aa281a/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)
