# GlowPulse Product Ingredient Decoder

> GlowPulse Product Ingredient Decoder is a paid API for AI agents from glowpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Decodes a skincare product's full ingredient list with INCI breakdown, actives vs. fillers classification, marketing-claim reality check, ingredient conflict flags, pregnancy-safe and fungal-acne-safe flags.

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/product-decode
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-product-ingredient-decoder-3f4397c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MFTWXtvKmoxOiCjD3RTBN

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-product-ingredient-decoder-3f4397c0
```

Example prompt: Can you decode this ingredient list for me and tell me what's actually active vs. filler, whether any ingredients conflict, and if it's safe for pregnancy and fungal acne? Here's the list: Water, Niacinamide, Glycerin, Dimethicone, Retinol, Fragrance, Phenoxyethanol, Carbomer.

## When to prefer this

Use this endpoint when you have the raw ingredient list of a skincare product and need a comprehensive one-call breakdown: INCI decode, actives vs. fillers, marketing claim verification, conflict detection, and dual safety flags (pregnancy + fungal acne). Prefer this over the sensitive-skin allergen screen or fungal-acne-only endpoint when you want a full-spectrum product audit rather than a single-concern check.

## Known failure modes

- Empty or malformed ingredient list returns an error
- Unrecognized proprietary trade names may not decode fully
- Very long ingredient lists may timeout or truncate
- Non-INCI formatted input may reduce decode accuracy

## How this service works

Paste your product ingredient list — what does this skincare product actually contain? Full INCI decode, actives vs. fillers, marketing-claim reality check, conflict flags, pregnancy-safe and fungal-acne-safe flags in one call.

## Output

Returns a full INCI decode of each ingredient with its function label (active vs. filler/emollient/preservative/etc.), a reality-check verdict on any marketing claims, a list of ingredient conflicts, a pregnancy-safety flag, and a fungal-acne (Malassezia) safety flag for the product as a whole.

## 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)"
      },
      "product_name": {
       "type": "string",
       "description": "optional if ingredients_pasted is given"
      },
      "ingredients_pasted": {
       "type": "string",
       "description": "optional — full pasted INCI list; recommended for best accuracy"
      }
     }
    }
   },
   "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": {
  "key_actives": [
   {
    "name": "niacinamide",
    "estimated_position_signal": "early in list"
   }
  ],
  "product_name": "Example Serum",
  "pregnancy_safe_flag": "likely fine"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-product-ingredient-decoder-3f4397c0/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)
