# ForgeMesh Dictionary Lookup

> ForgeMesh Dictionary Lookup 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 definitions, part of speech, pronunciation, syllable count, synonyms, and antonyms for any English word, with spelling suggestions for unknown words.

## Facts

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

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-dictionary-lookup-f196f004 -d '<json body>'
```

Example prompt: What does 'serendipity' mean? Give me its definition, part of speech, pronunciation, syllable count, and some synonyms and antonyms.

## When to prefer this

Use this endpoint when an AI agent needs structured dictionary data for an English word — definitions, pronunciation, part of speech, syllable count, synonyms, and antonyms — in a single call, without scraping a dictionary website. It is especially useful when the input word might be misspelled, as it returns spelling suggestions rather than empty errors.

## Known failure modes

- Word not found — returns spelling suggestions for closest matches rather than an empty error
- Input word is empty or missing — likely returns a validation error
- Non-English words may not be found — may return suggestions or no results
- Network timeout or service unavailability

## How this service works

English dictionary API: definitions with part of speech, pronunciation, syllable count, synonyms, and antonyms for any word in one call. Unknown words return closest-spelling suggestions instead of an empty error. Structured JSON built for agents that need word meanings without scraping a dictionary site.

## Output

A structured JSON object containing the word's definition(s), part of speech, pronunciation, syllable count, synonyms, and antonyms. If the word is not found, returns the closest spelling suggestions instead of an error.

## 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/forgemesh-dictionary-lookup-f196f004/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)
