# GlowPulse Skincare Routine Builder

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

Generates a personalized AM/PM skincare routine with conflict-checked active ingredient scheduling, climate-aware product guidance, and budget-tiered recommendations based on skin type and concerns.

## Facts

- Endpoint: GET https://glowpulse-nine.vercel.app/api/glow/routine-builder
- Price: $0.2/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-routine-builder-32bffa12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j5F3ZAOv2iIf-4XshuXzM

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-32bffa12
```

Example prompt: Can you build me a full AM and PM skincare routine for combination skin with acne and hyperpigmentation concerns, keeping it under $80 total and flagging which nights to use retinoids vs exfoliants?

## When to prefer this

Choose this endpoint when a user needs a complete, personalized morning and evening skincare regimen — especially when ingredient conflict scheduling (e.g. retinoid nights vs. exfoliant nights), budget tiering from drugstore to prestige, or climate-appropriate product type guidance are required. It is more comprehensive than a single-ingredient checker or product lookup, covering the full routine holistically.

## Known failure modes

- Missing required skin type parameter returns an error or incomplete routine
- Unrecognized skin concern values may produce generic rather than targeted recommendations
- Climate or location data absent may result in non-climate-aware product suggestions
- Budget parameter out of expected range may default to a middle tier without notice
- Network timeout on Vercel serverless cold start may cause latency spikes

## 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 JSON object containing the user's skin profile (skin type and concerns) along with ordered AM and PM routine steps, each specifying a step number and product category. May include budget tier notes (drugstore vs prestige) and ingredient conflict scheduling guidance indicating which active ingredients to use on which nights.

## 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-32bffa12/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)
