# ForgedMesh Define-Word API

> ForgedMesh Define-Word 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).

Returns dictionary definitions, part-of-speech labels, pronunciation guide, and synonym/antonym list for any English word in a single call.

## Facts

- Endpoint: POST https://x402.forgemesh.io/define-word
- 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/forgedmesh-define-word-api-92988e48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_57VzngsQP0AbnuUPyCfnM

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 forgedmesh-define-word-api-92988e48 -d '<json body>'
```

Example prompt: What does 'ephemeral' mean — give me all its senses labeled by part of speech, how to pronounce it, and a list of synonyms and antonyms.

## When to prefer this

Choose this endpoint when you need definitions, pronunciations, and synonym/antonym data for an English word in a single API call — ideal for writing assistants, tutoring bots, and content pipelines that would otherwise need to chain multiple dictionary and thesaurus queries.

## Known failure modes

- Word not found in dictionary — unknown or misspelled word returns empty or error response
- Non-English words may return no results
- Very technical jargon or neologisms may have incomplete entries
- Payment failure (insufficient USDC balance) returns 402 error

## How this service works

Get dictionary definitions for a word — all senses labeled noun/verb/adjective, with pronunciation guide and a synonym/antonym list attached. One call replaces a definition query, a thesaurus query, and a spell-check: useful for writing assistants, tutoring bots, and content pipelines.

## Output

A structured response containing all dictionary senses for the queried word, each labeled with its part of speech (noun, verb, adjective, etc.), a pronunciation guide, and a combined synonym and antonym list — replacing separate dictionary, thesaurus, and spell-check queries.

## 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/forgedmesh-define-word-api-92988e48/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)
