# GlowPulse Pregnancy & Nursing Skincare Safety Screen

> GlowPulse Pregnancy & Nursing Skincare Safety 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-14).

Screens skincare ingredients or products for pregnancy and nursing safety using an AAD-informed flagged-ingredient list, providing safe alternatives and a professional-consultation notice.

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/pregnancy-safe
- 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-pregnancy-nursing-skincare-safety-screen-80ec9397
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y499nCCyKg3gezn74UVoX

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-pregnancy-nursing-skincare-safety-screen-80ec9397
```

Example prompt: I'm pregnant and want to know if retinol and salicylic acid are safe to use — can you check those ingredients against the pregnancy-safe skincare screen and suggest alternatives if they're flagged?

## When to prefer this

Use this endpoint when a user is pregnant or nursing and needs to verify whether specific skincare ingredients or products are safe, particularly when seeking AAD-informed guidance and safe alternatives. Prefer over generic ingredient checkers when pregnancy/nursing context is explicit.

## Known failure modes

- Ingredient not recognized in database — returns unknown status
- Ambiguous product name with multiple formulations — may return inconclusive result
- Missing required ingredient or product parameter — returns 400 error
- Service unavailable or payment not processed — returns 402 or 5xx error

## How this service works

Is this skincare ingredient safe during pregnancy? Pregnancy and nursing safety screen for ingredients or products — AAD-informed flagged-ingredient list, safe alternatives, and a professional-consultation notice. Not a substitute for OB/derm advice.

## Output

Returns a safety verdict for the queried ingredient or product, a list of flagged ingredients with risk explanations based on AAD guidelines, suggested pregnancy-safe alternatives, and a disclaimer recommending consultation with an OB or dermatologist.

## 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": "retinol,salicylic acid | The Ordinary Retinol 0.5% (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": "caution — flagged ingredients present",
  "flagged_ingredients": [
   {
    "guidance": "avoid",
    "ingredient": "retinol"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-pregnancy-nursing-skincare-safety-screen-80ec9397/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)
