# x402.forgemesh.io Word Associations API

> x402.forgemesh.io Word Associations 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 words related to a given word by meaning, rhyme, sound, or adjective association, ranked by strength, up to 20 results.

## Facts

- Endpoint: POST https://x402.forgemesh.io/word-associations
- 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-word-associations-api-f09cd262
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cyv7zCoOkXdwSmjSoZcep

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-word-associations-api-f09cd262 -d '<json body>'
```

Example prompt: Give me up to 20 words that rhyme with 'ocean' — use the rhyme relation (rel_rhy).

## When to prefer this

Use this endpoint when you need linguistically related words for creative tasks such as copywriting, poetry, product naming, crossword solving, or word games — especially when rhyme, sound similarity, or adjective association is needed in addition to semantic similarity.

## Known failure modes

- Unknown or misspelled input word returns empty result list
- Invalid relation type defaults to ml or returns an error
- Very obscure words may return fewer than expected results
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Word association API: get words related to any word — meanings-like (ml), rhymes (rel_rhy), sounds-like (sl), or adjectives-for (rel_jjb) — ranked by association strength, up to 20 results. For copywriting, product naming, poetry, crosswords, and word-game agents. Cached 24 hours.

## Output

A ranked list of up to 20 words related to the input word under the chosen relation type (ml for meaning-like, rel_rhy for rhymes, sl for sounds-like, rel_jjb for adjectives), each scored by association strength. Results are cached for 24 hours.

## 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/x402-forgemesh-io-word-associations-api-f09cd262/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)
