# GlowPulse Sensitive Skin Ingredient Screen

> GlowPulse Sensitive Skin Ingredient Screen is a paid API for AI agents from glowpulse-nine.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Checks a skincare ingredient list against the EU 26-allergen fragrance list and common contact-dermatitis triggers, flagging irritants, allergens, and gentle ingredients with a patch-test recommendation.

## Facts

- Endpoint: GET https://glowpulse-nine.vercel.app/api/glow/sensitive-skin
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-sensitive-skin-ingredient-screen-70e2a3f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rCe3v7TH_x37IDA0Ed6aF

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-sensitive-skin-ingredient-screen-70e2a3f5
```

Example prompt: Can you screen this ingredient list for me — Aqua, Glycerin, Linalool, Citronellol, Phenoxyethanol — and tell me if anything shows up on the EU 26 fragrance allergen list or is a known contact-dermatitis trigger? I have reactive skin so also flag any gentle ingredients and let me know if I should patch test.

## When to prefer this

Choose this endpoint when you need to specifically validate a skincare ingredient list against the EU 26 fragrance allergen standard and common contact-dermatitis triggers for users with sensitive, reactive, or allergy-prone skin. It is more specialized than a general ingredient decoder and more focused on allergen safety than fungal-acne or pregnancy safety screens on the same platform.

## Known failure modes

- Empty or malformed ingredient list returns an error or empty match set
- Ingredients submitted as brand names rather than INCI names may not be recognized
- Very long ingredient lists may exceed request limits
- Non-standard ingredient spellings may cause missed matches
- Network or service unavailability returns a 402 or 5xx error

## How this service works

Sensitive skin ingredient screen — irritant and allergen check against the EU 26-allergen fragrance list and common contact-dermatitis triggers, with gentle-ingredient callouts and a patch-test recommendation.

## Output

A JSON response containing an overall verdict (e.g. 'moderate — some flagged ingredients'), a list of EU 26 allergen matches with the specific ingredient names, contact-dermatitis trigger callouts, gentle-ingredient highlights, and a patch-test recommendation indicating whether caution is advised.

## 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)"
      },
      "ingredients_or_product": {
       "type": "string",
       "description": "linalool,limonene,denatured alcohol | product name (required)"
      }
     }
    }
   },
   "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": {
  "overall_verdict": "moderate — some flagged ingredients",
  "eu_26_allergen_matches": [
   {
    "ingredient": "linalool"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-sensitive-skin-ingredient-screen-70e2a3f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from glowpulse-nine.vercel.app](https://www.zero.xyz/host/glowpulse-nine.vercel.app/llms.txt)
