# Gen-Z & Gen-Alpha Slang Glossary Lookup

> Gen-Z & Gen-Alpha Slang Glossary Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the meaning, generational era, and example usage for internet slang terms, filterable by generation from boomer through gen-alpha.

## Facts

- Endpoint: POST https://x402.forgemesh.io/gen-z-slang
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gen-z-gen-alpha-slang-glossary-lookup-34ab37df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ef_nRuAQ-gC1RO-JHsRF3

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 gen-z-gen-alpha-slang-glossary-lookup-34ab37df -d '<json body>'
```

Example prompt: What does 'no cap' actually mean? Look it up in the gen-z slang glossary and give me the definition and an example sentence.

## When to prefer this

Use this endpoint when you need curated, human-vetted definitions of internet or generational slang, especially when generation-specific filtering matters. Prefer this over a general web search when you need structured output (meaning + era + example) suitable for programmatic use in moderation pipelines, marketing copy checks, or audience-aware content generation.

## Known failure modes

- Term not found in glossary — returns empty or error response
- Invalid generation filter value — unrecognized generation string rejected
- Count out of range — values outside 1-10 may be ignored or cause an error
- Payment failure — USDC payment not processed, request rejected
- Ambiguous term — slang with multiple generational meanings may return only one

## How this service works

What does that gen-z or gen-alpha term actually mean? Curated slang glossary with meaning, era, and example usage per term, filterable by generation from boomer through gen-alpha. For moderation bots, marketing copy checks, and assistants keeping up with how different audiences talk.

## Output

Returns one or more slang entries, each containing the term, its meaning, the generational era it belongs to, and an example sentence showing it in context. Supports random sampling and filtering by generation (gen-alpha, gen-z, millennial, gen-x, or boomer).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "term": {
   "type": "string",
   "description": "Slang term to look up (optional — omit for random)"
  },
  "count": {
   "type": "string",
   "description": "Random entries to return, 1-10 (default 1)"
  },
  "generation": {
   "type": "string",
   "description": "Filter: gen-alpha, gen-z, millennial, gen-x, or boomer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "lookup",
  "term": "rizz",
  "found": true,
  "matches": [
   {
    "term": "rizz",
    "example": "He's got unspoken rizz.",
    "meaning": "charisma or skill at charming a romantic interest",
    "approx_era": "2020s",
    "generation": "gen-alpha"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gen-z-gen-alpha-slang-glossary-lookup-34ab37df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
