# Related Words Finder

> Related Words Finder 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).

Finds words related to a given input word by semantic similarity, rhyme, sound, or adjective pairing, ranked by association strength, returning up to 20 results.

## Facts

- Endpoint: POST https://x402.forgemesh.io/related-words-finder
- 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/related-words-finder-eef429b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZklvYeNgQVABVTZxg7EH7

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 related-words-finder-eef429b5 -d '<json body>'
```

Example prompt: Can you find words that are semantically related to 'resilient' — I want up to 20 options ranked by association strength, going beyond the obvious synonyms?

## When to prefer this

Choose this endpoint when you need ranked word association lists that go beyond an LLM's default vocabulary — especially for creative tasks like copywriting, product naming, wordplay, or word-game solving where rhyme, sound-alike, or adjective-pairing dimensions matter. Prefer it over a generic LLM prompt when you need structured, scored output from a dedicated lexical database.

## Known failure modes

- Unknown or misspelled input word returns empty result list
- Invalid relation type value returns an error or falls back to default ml relation
- Very common or very obscure words may return fewer than 20 results
- Non-English words may yield poor or no results
- Payment failure (402) if USDC balance is insufficient

## How this service works

Finds words related to any input word, similar meanings, words that sound alike, or adjectives commonly paired with it, ranked by association strength, up to 20 results per call. For copywriters, product namers, and word-game agents looking for options beyond an LLM's usual first guesses.

## Output

A ranked list of up to 20 words related to the input word, with association scores indicating how strongly each word relates to the input under the chosen relation type (semantic similarity, rhyme, sounds-like, or common adjective pairing).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "word": {
   "type": "string"
  },
  "relation": {
   "type": "string",
   "description": "ml (default) | rel_rhy | sl | rel_jjb"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "word": "remittance",
    "score": 46177
   },
   {
    "word": "fee",
    "score": 40639
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/related-words-finder-eef429b5/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)
