# GlowPulse Sensitive Skin Ingredient Screen

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

Checks skincare product ingredients against the EU 26-allergen fragrance list and common contact-dermatitis triggers, flagging irritants and allergens while calling out gentle ingredients and recommending patch-testing.

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/sensitive-skin
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-sensitive-skin-ingredient-screen-47c0098f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0SqLEeV6myLa58viGUgSx

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-47c0098f
```

Example prompt: Can you screen this ingredient list for me — Aqua, Niacinamide, Glycerin, Linalool, Limonene, Fragrance, Methylisothiazolinone — and flag anything that could irritate sensitive or allergy-prone skin, especially against the EU 26 fragrance allergens?

## When to prefer this

Choose this endpoint when a user needs allergen and irritant screening specifically tailored to sensitive skin, particularly when EU 26-allergen fragrance compliance or contact-dermatitis concerns are the primary focus. Prefer over general ingredient analyzers when the output needs to include patch-test guidance and gentle-ingredient callouts for reactive or allergy-prone skin types.

## Known failure modes

- Unrecognized or non-standard ingredient names may not be matched correctly
- Very short or ambiguous ingredient lists may produce incomplete screening
- Proprietary blend names may not be decomposable into individual allergens
- Missing input yields a 400 error with a prompt to supply ingredient data

## 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

Returns a breakdown of flagged allergens matched against the EU 26-allergen fragrance list and common contact-dermatitis triggers, highlights any gentle or low-irritation ingredients, and includes a patch-test recommendation for sensitive skin users.

## 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-47c0098f/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)
