# ForgeMesh Word of the Day

> ForgeMesh Word of the Day 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 one or more advanced English vocabulary words with definitions, part of speech, example sentences, and synonyms, filterable by difficulty or starting letter.

## Facts

- Endpoint: POST https://x402.forgemesh.io/word-of-the-day
- 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-word-of-the-day-69a4e1c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-md4UcNo8_16G5RiljZ6F

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-word-of-the-day-69a4e1c1 -d '<json body>'
```

Example prompt: Give me 3 expert-difficulty English vocabulary words that start with the letter M — each with a dictionary-quality definition, its part of speech, an example sentence, and three synonyms, so I can use them for today's learning posts.

## When to prefer this

Choose this endpoint when you need curated, pedagogically complete vocabulary entries — not just a word, but definition, part of speech, example sentence, and synonyms together. Ideal for daily-post automation bots, language learning apps, vocabulary quiz generators, or any workflow that needs themed word sets filterable by difficulty level or starting letter. Prefer this over a generic dictionary lookup when the goal is ready-to-publish educational content rather than raw definitions.

## Known failure modes

- Invalid count value outside 1-10 range returns an error
- Unsupported difficulty value (not 'advanced' or 'expert') may return an error or be ignored
- starts_with with more than one character may be rejected
- Payment failure (insufficient USDC) results in 402 response blocking the call
- No words matching the filter combination (e.g., expert words starting with X) may return empty or reduced results

## How this service works

Random advanced English word with everything needed to teach it: dictionary-quality definition, part of speech, example sentence in context, and three synonyms. Filter by difficulty tier or first letter to build themed streaks. Made for daily-post bots and learning apps.

## Output

Returns one or more advanced English vocabulary words, each including the word itself, a dictionary-quality definition, its part of speech, a contextual example sentence, and three synonyms. Count ranges from 1 to 10, and results can be filtered by difficulty (advanced or expert) and/or starting letter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "string",
   "description": "Words to return, 1-10 (default 1)"
  },
  "difficulty": {
   "type": "string",
   "description": "Optional: advanced or expert"
  },
  "starts_with": {
   "type": "string",
   "description": "Optional: single starting letter"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "words": [
   {
    "word": "ephemeral",
    "example": "The beauty of the cherry blossoms is ephemeral.",
    "synonyms": [
     "fleeting",
     "transient",
     "momentary"
    ],
    "definition": "lasting for a very short time",
    "difficulty": "advanced",
    "part_of_speech": "adjective"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-word-of-the-day-69a4e1c1/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)
