# ForgeMesh Slang Dictionary API

> ForgeMesh 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).

Looks up generational slang terms or returns random entries, each with a one-sentence meaning, origin generation, approximate era, and example sentence.

## Facts

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

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 forgemesh-slang-dictionary-api-54ca3c21 -d '<json body>'
```

Example prompt: What does 'bussin' mean? Look it up in the slang dictionary and tell me which generation uses it, roughly when it emerged, and give me an example sentence.

## When to prefer this

Use this endpoint when you need to decode generational slang or explore vocabulary from a specific generation (Gen Alpha, Gen Z, Millennial, Gen X, Boomer). Ideal for understanding cultural language differences, content moderation context, writing assistance, or educational tools. Since it uses a local curated dataset, responses are deterministic and consistent for the same term — prefer this over web-scraped sources when reproducibility matters.

## Known failure modes

- Term not found in curated dataset — returns empty or error response
- Invalid generation filter value returns validation error
- Count out of range (>10 or <1) returns validation error
- Empty term string with no random mode triggers ambiguous response

## How this service works

Slang lookup and browse API: query a specific term or sample random entries from one generation's vocabulary — each entry carries a one-sentence meaning, its origin generation, approximate era, and an example sentence. Local curated dataset, same answer every time for the same term.

## Output

Returns a slang entry with: the term's one-sentence definition, the generation it belongs to (e.g. gen-z, millennial, boomer), an approximate era, and an illustrative example sentence. For random mode, returns 1–10 entries, optionally filtered by a specific generation.

## 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/forgemesh-slang-dictionary-api-54ca3c21/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)
