# GlowPulse Skincare Ingredient Lookup

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

Returns safety, function, comedogenicity, pregnancy safety, and regulatory status for a single INCI skincare ingredient.

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/ingredient-lookup
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-skincare-ingredient-lookup-bd9c3313
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hdgCDP4nNSCKfgT_n5RuJ

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-skincare-ingredient-lookup-bd9c3313
```

Example prompt: Can you look up retinol for me — what does it do, is it EU CosIng approved, what's the CIR safety verdict, and is it safe to use during pregnancy?

## When to prefer this

Use this endpoint when you need authoritative, regulation-grounded safety and function data for a single named INCI ingredient — especially when EU CosIng status, CIR verdicts, comedogenicity ratings, or pregnancy safety are the specific outputs needed. Prefer this over a full ingredient-list decoder when the user is asking about one specific ingredient rather than a full product formula.

## Known failure modes

- Unrecognized or misspelled INCI ingredient name returns an error or empty result
- Obscure or novel ingredients may lack CIR/CosIng data, resulting in incomplete fields
- Non-INCI common names (e.g. 'vitamin C' instead of 'ascorbic acid') may not resolve correctly
- Payment not received results in 402 response blocking the lookup

## How this service works

Skincare ingredient checker — what is [INCI ingredient] and is it safe? Function, EU CosIng status, CIR/PubChem safety verdict, comedogenicity rating with concentration caveat, and pregnancy-safety flag, grounded in EU CosIng, CIR, and dermatology literature.

## Output

Returns a structured report for the queried INCI ingredient including: its cosmetic function, EU CosIng regulatory status, CIR and/or PubChem safety verdict, comedogenicity rating with any applicable concentration caveats, and a pregnancy/nursing safety flag — all grounded in EU CosIng, CIR, and dermatology literature.

## 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)"
      },
      "inci_name": {
       "type": "string",
       "description": "Niacinamide | Retinol | Sodium Hyaluronate (required — INCI ingredient 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": {
  "function": "Active — skin-barrier and brightening agent",
  "inci_name": "Niacinamide",
  "comedogenicity": {
   "rating_0_5": 0
  },
  "cir_safety_verdict": {
   "verdict": "safe as used"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-skincare-ingredient-lookup-bd9c3313/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)
