# GlowPulse Price-Per-Active-Ingredient Analyzer

> GlowPulse Price-Per-Active-Ingredient Analyzer is a paid API for AI agents from glowpulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Computes the dollar-per-percent-active-ingredient ratio for skincare products, enabling normalized value comparisons across product options based on verified concentration data.

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/price-per-active
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-price-per-active-ingredient-analyzer-a36cdad1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PaIHJTEX8rrCekdGgRFeM

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 glowpulse-price-per-active-ingredient-analyzer-a36cdad1
```

Example prompt: Can you tell me the price-per-percent-active for The Ordinary Niacinamide 10% + Zinc 1% — it's $6.50 for 30ml — and compare it to Paula's Choice 10% Niacinamide Booster at $49 for 20ml, so I can see which one is actually the better value?

## When to prefer this

Use this endpoint when a user wants to compare skincare products by value-per-active-ingredient concentration rather than raw price or volume. It is uniquely suited for cases where concentration data is publicly available and the user wants an objective, normalized cost-efficiency metric. Prefer this over general skincare recommendation endpoints when the user's core question is about financial value relative to formula strength, not about skin type suitability or routine building.

## Known failure modes

- Concentration data unavailable or listed as 'undisclosed %' — endpoint refuses to estimate, returns null for that product
- Product not found in database — returns 404 or empty result
- Insufficient product data (missing price or size) — returns validation error
- Multiple products with same name — returns disambiguation prompt or list
- Rate limiting or payment failure (x402) — returns 402 Payment Required

## How this service works

Price per percent active ingredient — normalized skincare value analysis across product options. The hidden dollar-per-concentration number brands don’t publish, computed only where real concentration data exists (never estimated from an undisclosed %).

## Output

Returns the computed price-per-percent-active-ingredient metric for one or more skincare products, calculated only where real concentration data is confirmed (never estimated). Includes normalized value scores and comparative rankings across submitted product options, enabling direct apples-to-apples cost-efficiency analysis.

## 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 | ko | ja | de | fr | es | pt (optional)"
      },
      "products": {
       "type": "string",
       "description": "The Ordinary Niacinamide 10%,Paula's Choice 10% Niacinamide Booster (required — comma-separated, 1-4 products)"
      },
      "active_focus": {
       "type": "string",
       "description": "optional — active to normalize against"
      }
     }
    }
   },
   "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": {
  "products_analyzed": [
   {
    "product": "The Ordinary Niacinamide 10%",
    "concentration_signal": "10%"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-price-per-active-ingredient-analyzer-a36cdad1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from glowpulse.theaslangroupllc.com](https://www.zero.xyz/host/glowpulse.theaslangroupllc.com/llms.txt)
