# ScentPulse Fragrance Note Profile Lookup

> ScentPulse Fragrance Note Profile Lookup is a paid API for AI agents from scentpulse-xi.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Returns the full note pyramid (top/middle/base), accord breakdown, molecule-level odor descriptors, wearer suitability, and occasion/climate fit for any named perfume or cologne.

## Facts

- Endpoint: GET https://scentpulse-xi.vercel.app/api/scent/note-profile
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scentpulse-fragrance-note-profile-lookup-519dd76d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4NRLwp4xN4A8cHhHHobso

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-note-profile-lookup-519dd76d
```

Example prompt: Can you pull up the full note pyramid and accord breakdown for Creed Aventus — top, middle, and base notes, plus molecule-level descriptors, who it suits, and what occasions and climates it works best for?

## When to prefer this

Use this endpoint when you need structured, molecule-grounded fragrance intelligence for a named perfume or cologne — including note pyramid, accords, wearer suitability, and occasion/climate fit — rather than general product information, pricing, or reviews. Prefer this over generic search when you need the olfactive breakdown specifically.

## Known failure modes

- Unknown or misspelled fragrance name returns no results or closest match
- Very niche or indie fragrances with limited community data may have sparse profiles
- Ambiguous fragrance names (e.g. 'Rose') may require disambiguation
- Rate limiting or payment failure returns 402 error
- API outage on Vercel deployment returns 503

## How this service works

Fragrance note-profile lookup — note pyramid (top/middle/base), accord breakdown, molecule-level odor descriptors, who it suits, and occasion/climate fit for any perfume or cologne, grounded in fragrance community consensus and The Good Scents Company ingredient data.

## Output

A structured fragrance profile including: layered note pyramid (top/middle/base notes), accord breakdown (e.g. fruity, woody, smoky), molecule-level odor descriptors grounded in The Good Scents Company data, description of who the fragrance suits, and recommended occasion and climate pairings.

## 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 | Maison Francis Kurkdjian | Dior (optional — helps disambiguate)"
      },
      "fragrance": {
       "type": "string",
       "description": "Bleu de Chanel | Baccarat Rouge 540 | Sauvage (required — fragrance name)"
      }
     }
    }
   },
   "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": "Bleu de Chanel EDP",
  "note_pyramid": {
   "top": [
    "Grapefruit",
    "Pink Pepper"
   ],
   "base": [
    "Sandalwood",
    "Labdanum"
   ],
   "middle": [
    "Ginger",
    "Nutmeg"
   ]
  },
  "scent_family_dna": "Woody aromatic — fresh citrus opening resolving into a warm, incense-tinged woody base."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-fragrance-note-profile-lookup-519dd76d/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)
