# x402.forgemesh.io English Dictionary

> x402.forgemesh.io English Dictionary 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 structured dictionary data for any English word including definitions, part-of-speech tags, phonetic pronunciation, syllable count, and synonyms/antonyms.

## Facts

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

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 x402-forgemesh-io-english-dictionary-eb299b8e -d '<json body>'
```

Example prompt: Can you look up the word 'serendipity' and give me its definition, part of speech, how to pronounce it, syllable count, and a few synonyms and antonyms?

## When to prefer this

Use this endpoint when you need a structured, machine-readable English dictionary entry with consistent JSON output — ideal for vocabulary apps, crossword solvers, language-learning agents, or any workflow that needs definitions, pronunciation, syllable counts, and synonym/antonym data in a single call. Prefer this over a general web search when you need deterministic, parseable lexical data rather than unstructured prose.

## Known failure modes

- Word not found in dictionary — returns empty or error response
- Non-English word submitted — may return no results or partial data
- Misspelled word — may return no match or nearest entry depending on implementation
- Empty or missing 'word' field — likely returns a validation error

## How this service works

Machine-readable English dictionary entry by word: definitions across senses, part-of-speech tags, phonetic pronunciation, syllable count, and related synonyms/antonyms. Deterministic JSON shape for vocabulary apps, crossword helpers, and language-learning agents.

## Output

A deterministic JSON object containing the word's definitions across multiple senses, part-of-speech tags (e.g. noun, verb, adjective), phonetic pronunciation string, syllable count, and lists of related synonyms and antonyms.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "word": {
   "type": "string",
   "description": "English word to look up, e.g. serendipity"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "word": "serendipity",
  "found": true,
  "antonyms": [],
  "synonyms": [
   "fluke",
   "luck"
  ],
  "syllables": 5,
  "definitions": [
   {
    "definition": "good luck in making unexpected and fortunate discoveries",
    "part_of_speech": "noun"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-forgemesh-io-english-dictionary-eb299b8e/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)
