# ScentPulse Price-Per-ML

> ScentPulse Price-Per-ML 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-16).

Returns price-per-milliliter cost breakdown for a named fragrance across available bottle sizes

## Facts

- Endpoint: GET https://scentpulse-xi.vercel.app/api/scent/price-per-ml
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scentpulse-price-per-ml-36947e1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QjXaqkn8fROnAB5vNjO4D

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-price-per-ml-36947e1f
```

Example prompt: What's the price per ml for Dior Sauvage EDT — I want to see the breakdown across all available bottle sizes so I can figure out which one gives the best value.

## When to prefer this

Use this endpoint when you need to calculate or compare the per-milliliter cost efficiency of a specific named fragrance across bottle sizes. Ideal for dupe-hunters justifying alternatives, collectors evaluating purchase sizes, or blind buyers optimizing budget. Prefer this over general retail search when you want a structured cost-per-ml metric rather than raw listing prices.

## Known failure modes

- Fragrance not found in database — returns empty or error response
- Ambiguous fragrance name with multiple flankers may return unexpected variant
- Price data may be stale if market prices have shifted
- Only approximate retail prices, not current sale or resale prices
- Payment signature missing or invalid — returns 402 Payment Required

## How this service works

Fragrance intelligence for perfume collectors, dupe-hunters, and blind-buyers. All endpoints require x402 payment (USDC on Base mainnet, or Solana USDC-SPL) via the PAYMENT-SIGNATURE header.

## Output

A JSON object containing the fragrance name and an array of size options, each with the bottle volume in ml, the approximate retail price in USD, and the calculated price-per-ml in USD. Allows direct value comparison across sizes.

## 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 | Carolina Herrera (optional)"
      },
      "fragrance": {
       "type": "string",
       "description": "Sauvage EDT | Good Girl (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": "Sauvage EDT",
  "size_options": [
   {
    "size_ml": 100,
    "approx_price_usd": 95,
    "price_per_ml_usd": 0.95
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scentpulse-price-per-ml-36947e1f/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)
