# ScentPulse Occasion-Match Fragrance Recommender

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

Returns fragrance recommendations matched to occasion, season, climate, age, and budget, with special guidance on hot-climate projection and longevity for Gulf, Southeast Asia, and Latin America buyers.

## Facts

- Endpoint: GET https://scentpulse.theaslangroupllc.com/api/scent/occasion-match
- 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-occasion-match-fragrance-recommender-2f685096
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XEFgZ7BKcnbcM-8NADrZY

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-occasion-match-fragrance-recommender-2f685096
```

Example prompt: I'm a 35-year-old living in Riyadh and I need a fragrance for outdoor evening socializing in summer — budget is around $70, and I want something that actually projects well in extreme heat rather than disappearing after an hour.

## When to prefer this

Use this endpoint when the user needs fragrance recommendations specifically contextualized by climate conditions (especially hot/humid environments), occasion type, and regional market context — particularly for Gulf, Southeast Asia, or Latin America buyers who are underserved by Western fragrance media. Prefer over generic fragrance search when longevity and projection in heat are key concerns.

## Known failure modes

- Missing required parameters (occasion, climate, or budget) returns a 400 validation error
- Unsupported region or climate type returns empty results or a fallback generic list
- Very niche occasion types may return low-confidence matches
- Budget too low for database coverage may return no matches

## How this service works

Fragrance recommendations by occasion, season, climate, age, and budget — including hot-climate projection and longevity guidance for Gulf, Southeast Asia, and Latin America buyers, a detail most Western fragrance media skips.

## Output

A ranked list of fragrance recommendations with occasion suitability, longevity rating, hot-climate projection score, and budget fit — tailored for the specified climate region, season, age group, and occasion type.

## 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"
      },
      "season": {
       "type": "string",
       "description": "spring | summer | fall | winter (optional)"
      },
      "climate": {
       "type": "string",
       "description": "hot-humid | hot-dry | temperate | cold (optional)"
      },
      "occasion": {
       "type": "string",
       "description": "office | date night | wedding | signature scent (optional)"
      },
      "age_range": {
       "type": "string",
       "description": "20s | 30s | 40s+ (optional)"
      },
      "budget_usd": {
       "type": "string",
       "description": "optional"
      }
     }
    }
   },
   "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": {
  "recommendations": [
   {
    "fragrance": "Terre d'Hermes",
    "why_it_fits": "Versatile mineral-woody, strong hot-climate performer"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-occasion-match-fragrance-recommender-2f685096/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)
