# GlowPulse Skincare Dupe Finder

> GlowPulse Skincare Dupe Finder is a paid API for AI agents from glowpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Finds cheaper alternative products to a named skincare item, normalized by active-ingredient concentration with texture caveats and false-dupe warnings

## Facts

- Endpoint: GET https://glowpulse.theaslangroupllc.com/api/glow/dupe-finder
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-skincare-dupe-finder-847d8efb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oBPp0zQ8kb9ls_8ctKqMM

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-dupe-finder-847d8efb
```

Example prompt: Can you find me cheaper dupes for Drunk Elephant Protini Polypeptide Cream — especially any K-beauty alternatives — and flag if any of the commonly recommended ones are actually false dupes that don't match the active ingredient concentrations?

## When to prefer this

Use this endpoint when a user wants budget-friendly skincare alternatives that are scientifically comparable — particularly when ingredient concentration accuracy matters and false-dupe risk needs to be flagged. Best for K-beauty discovery or when users are frustrated by ingredient-overlap-only dupe lists that ignore concentration differences.

## Known failure modes

- Product name not recognized or too ambiguous — returns no results or a clarification prompt
- Product has no meaningful actives to normalize against — returns partial results with caveat
- No viable dupes found within price threshold — returns empty dupe list
- Insufficient ingredient concentration data for referenced product — returns results with confidence caveats
- Rate limit or payment failure — returns 402 or 429 error

## How this service works

K-beauty and skincare dupe finder — cheaper alternatives to a named product, normalized by active-ingredient concentration (not just INCI overlap), with honest texture/elegance caveats and false-dupe warnings.

## Output

Returns a list of cheaper alternative skincare products normalized by active-ingredient concentration (not just INCI overlap), including price comparisons, texture and elegance caveats, and explicit false-dupe warnings for products commonly mislabeled as dupes

## 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": "US | EU | KR | JP (optional)"
      },
      "product_name": {
       "type": "string",
       "description": "Drunk Elephant T.L.C. Framboos Glycolic Night Serum (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": {
  "product_name": "Drunk Elephant T.L.C. Framboos",
  "candidate_dupes": [
   {
    "brand": "The Ordinary",
    "product": "AHA 30% + BHA 2% Peeling Solution",
    "concentration_match": "higher concentration"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-skincare-dupe-finder-847d8efb/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)
