# Generational Slang Dictionary API

> Generational Slang Dictionary API 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).

Look up the meaning, origin generation, era, and usage example of slang terms spanning Boomer to Gen Alpha, or pull random slang entries filtered by generation.

## Facts

- Endpoint: POST https://x402.forgemesh.io/generational-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/generational-slang-dictionary-api-eee2ba09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SP4xZmEnzcEX6F9G7QatS

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 generational-slang-dictionary-api-eee2ba09 -d '<json body>'
```

Example prompt: What does 'rizz' mean — which generation uses it, what era is it from, and can you give me an example sentence? Also pull me 3 random Gen Alpha slang terms with their definitions.

## When to prefer this

Use this endpoint when an agent needs to decode or produce generationally authentic slang — translating terms across age groups (Boomer to Gen Alpha), writing in-voice for a specific generation, or explaining what a trending term means. Prefer over a general web search when you want a curated, structured response with generation metadata and usage examples rather than unstructured results.

## Known failure modes

- Term not found in the ~200-term dictionary — returns empty or error response
- Invalid generation filter value returns an error
- Count out of 1–10 range may return an error or default
- Omitting both term and generation returns a single random entry from any generation

## How this service works

Generational slang dictionary spanning boomer to gen-alpha: look up what a slang term means (with origin generation, era, and a usage example), or pull random slang from a chosen generation. Around 200 curated real terms — skibidi to groovy — for agents translating across age groups or writing in-voice.

## Output

Returns a slang term's definition, the generation that uses it (e.g. gen-z, millennial, boomer), the era it originated from, and a usage example sentence. For random requests, returns 1–10 entries matching the chosen generation filter.

## 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/generational-slang-dictionary-api-eee2ba09/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)
