# ScentPulse Fragrance Note-Profile Lookup

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

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

## Facts

- Endpoint: GET https://scentpulse.theaslangroupllc.com/api/scent/note-profile
- Price: $0.08/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-note-profile-lookup-0b01931f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JAtXbtaPL8tczJ_EBpzLu

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-0b01931f
```

Example prompt: Can you pull up the full note pyramid and accord breakdown for Dior Sauvage — top, middle, and base notes, what the overall accord character is, who it typically suits, and whether it works for hot or humid climates?

## When to prefer this

Use this endpoint when you need structured, detailed fragrance composition data — specifically the note pyramid, accord character, and molecular descriptors — for a named perfume or cologne. Prefer this over generic web search when you need machine-readable, consistently structured olfactory profile data grounded in ingredient-level sources.

## Known failure modes

- Fragrance not recognized or not in database — returns 404 or empty result
- Ambiguous fragrance name with multiple versions — may return incorrect variant
- Niche or very new fragrances may have incomplete note data
- Brand or flanker misspelling causes lookup failure

## 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 the top, middle, and base note pyramid, accord breakdown (e.g. woody, citrus, aromatic), molecule-level odor descriptors, a suitability profile (age, gender, style), and recommended occasions and climate contexts — sourced from The Good Scents Company ingredient data and fragrance community consensus.

## 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-0b01931f/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)
