# Forgemesh Slang Translator

> Forgemesh Slang Translator 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).

Translates slang terms across generations into plain English, identifying the originating generation, era, and providing an example sentence, with fuzzy matching support.

## Facts

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

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-translator-ff444ec1 -d '<json body>'
```

Example prompt: What does 'rizz' mean? Give me its plain-English definition, which generation coined it, and an example sentence showing how it's used.

## When to prefer this

Use this endpoint when you need to decode or explain slang terms across any generation — Gen Alpha, Gen Z, Millennial, Gen X, or Boomer — especially when the exact spelling is uncertain and fuzzy matching is helpful. Prefer this over a generic dictionary API when generational attribution and era context matter.

## Known failure modes

- Term not found even with fuzzy matching — no result returned
- Invalid generation filter value returns an error or empty results
- Count parameter outside 1-10 range may be rejected or clamped
- Ambiguous fuzzy match may return an unintended term

## How this service works

Translate slang across generations: send any term — rizz, no cap, adulting, gnarly, groovy — and get its plain-English meaning, the generation that coined it, the era, and a natural example sentence. Fuzzy matching finds partial terms, so agents can decode messages without exact spelling.

## Output

Returns the plain-English definition of the slang term, the generation that coined it (e.g. gen-z, millennial), the era it originated from, and a natural example sentence demonstrating usage. Supports fuzzy matching so partial or approximate spellings still resolve.

## 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-translator-ff444ec1/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)
