← Marketplace
Base
Theaslangroupllc
Theaslangroupllc is an x402-native service at https://glowpulse.theaslangroupllc.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 12 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Glow Claims Check What does "clean beauty" actually mean? Greenwashing and marketing-claim detector for skincare — legal meaning of "clean," "non-toxic," "dermatologist-tested," and "hypoallergenic," whether the ingredient list actually supports the claim, and greenwashing risk level. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/claims-check | 0.12 USDC |
Glow Conflict Check Is retinol safe with vitamin C? Skincare ingredient-conflict checker — myth-vs-fact verdict on routine pairings (retinol+AHA, niacinamide+vitamin C, benzoyl peroxide+retinol), real pH/oxidation conflicts flagged separately from debunked myths, plus a layering-order suggestion. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/conflict-check | 0.1 USDC |
Glow Dupe Finder 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. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/dupe-finder | 0.15 USDC |
Glow Fungal Acne Check Is this ingredient list fungal-acne safe? Malassezia (pityrosporum folliculitis) safety screen for skincare ingredients — flagged lipid-chain-length ingredients vs. safe ingredients, grounded in mycology and lipid-chemistry literature. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/fungal-acne-check | 0.08 USDC |
Glow Ingredient Lookup 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. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/ingredient-lookup | 0.05 USDC |
Glow K Beauty Compare K-beauty vs Western skincare compare — retinol vs bakuchiol, AHA vs PDRN/exosomes, or any active/concern compared across Korean (MFDS) and Western (FDA/EU) philosophy, regulatory status, and evidence strength. Honest about under-evidenced K-beauty trend ingredients. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/k-beauty-compare | 0.12 USDC |
Glow Pregnancy Safe 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. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/pregnancy-safe | 0.1 USDC |
Glow Price Per Active Price per percent active ingredient — normalized skincare value analysis across product options. The hidden dollar-per-concentration number brands don’t publish, computed only where real concentration data exists (never estimated from an undisclosed %). | /m/bz-glowpulse-theaslangroupllc-com/api/glow/price-per-active | 0.08 USDC |
Glow Product Decode Paste your product ingredient list — what does this skincare product actually contain? Full INCI decode, actives vs. fillers, marketing-claim reality check, conflict flags, pregnancy-safe and fungal-acne-safe flags in one call. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/product-decode | 0.15 USDC |
Glow Routine Builder 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. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/routine-builder | 0.2 USDC |
Glow Sale Timing When is the next Sephora or Olive Young sale? Beauty retailer sale-timing brief — Sephora Spring/Fall Savings tiers, Ulta 21 Days of Beauty, Olive Young and K-beauty retailer cycles, loyalty-tier discounts, and best-retailer-by-category guidance. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/sale-timing | 0.08 USDC |
Glow Sensitive Skin Sensitive skin ingredient screen — irritant and allergen check against the EU 26-allergen fragrance list and common contact-dermatitis triggers, with gentle-ingredient callouts and a patch-test recommendation. | /m/bz-glowpulse-theaslangroupllc-com/api/glow/sensitive-skin | 0.1 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-glowpulse-theaslangroupllc-com/api/glow/claims-check')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-glowpulse-theaslangroupllc-com/api/glow/claims-check # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …