# GlowPulse Skincare Routine Builder

> GlowPulse Skincare Routine Builder is a paid API for AI agents from glowpulse.theaslangroupllc.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-16).

Generates a personalized AM/PM skincare routine with conflict-checked active ingredient scheduling, climate-aware product guidance, and budget-tiered recommendations from drugstore to prestige.

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/routine-builder
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-skincare-routine-builder-5472f715
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uZqz_lK07PvXuJW5ZCSQE

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-routine-builder-5472f715
```

Example prompt: Build me a full AM and PM skincare routine for oily, acne-prone skin — I'm on a $50/month budget, live in a hot and humid climate, and want to include retinol without it conflicting with my AHA exfoliant.

## When to prefer this

Choose this endpoint when a user needs a complete, personalized skincare routine with conflict-aware active ingredient scheduling — especially when factors like climate, budget tier, and ingredient interactions (retinoids vs. exfoliants) all need to be considered together. Prefer this over generic beauty Q&A when structured AM/PM scheduling and ingredient conflict-checking are required.

## Known failure modes

- Missing or invalid skin type parameter returns incomplete or generic routine
- Conflicting input parameters (e.g., incompatible skin concerns) may produce overly conservative scheduling
- Unsupported climate region may fall back to generic guidance
- Budget value out of expected range may default to mid-tier recommendations
- Service unavailability returns HTTP 402 or 5xx with no routine data

## How this service works

Build me a skincare routine — full AM/PM routine for your skin type, concerns, and budget. Conflict-checked active scheduling (retinoid nights vs. exfoliant nights), climate-aware product-type guidance, and drugstore-to-prestige budget notes.

## Output

Returns a structured AM and PM skincare routine personalized to the user's skin type, concerns, and budget, including active ingredient scheduling (e.g., retinoid nights vs. exfoliant nights), climate-appropriate product-type guidance (e.g., gel vs. cream moisturizers), and notes comparing drugstore and prestige product options.

## 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)"
      },
      "region": {
       "type": "string",
       "description": "optional — for climate context"
      },
      "concerns": {
       "type": "string",
       "description": "required — comma-separated"
      },
      "skin_type": {
       "type": "string",
       "description": "dry | oily | combination | normal | sensitive (required)"
      },
      "budget_tier": {
       "type": "string",
       "description": "drugstore | mid | prestige | mixed (optional, default mixed)"
      }
     }
    }
   },
   "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": {
  "profile": {
   "concerns": [
    "acne",
    "hyperpigmentation"
   ],
   "skin_type": "combination"
  },
  "am_routine": [
   {
    "step": 1,
    "category": "cleanser"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-skincare-routine-builder-5472f715/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)
