# x402.forgemesh.io Rhymes & Synonyms API

> x402.forgemesh.io Rhymes & Synonyms 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 synonyms, rhymes, similar-sounding words, or strongly-associated terms for any input word, ranked by associative strength.

## Facts

- Endpoint: POST https://x402.forgemesh.io/rhymes-and-synonyms
- 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-rhymes-synonyms-api-41496103
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OdyinXSfYrm9W_-XnDbm2

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-rhymes-synonyms-api-41496103 -d '<json body>'
```

Example prompt: Find me words that rhyme with 'bright' — I need the top rhymes ranked by strength for a poem I'm writing.

## When to prefer this

Use this endpoint when an agent needs word association data for creative tasks like copywriting, poetry, naming, or word games — especially when rhyme or semantic similarity ranking is needed. Prefer over a general dictionary API when ranked associative strength across multiple relation types is required.

## Known failure modes

- Unknown or misspelled word returns empty results
- Invalid relation type enum value causes error
- Very rare or technical words may return sparse results
- Missing required 'word' field causes validation error

## How this service works

Word association API: synonyms, rhymes, similar-sounding words, or strongly-associated terms for any word, ranked by strength. For copywriting, naming, poetry, and word-game agents.

## Output

A ranked list of words related to the input word by the specified relation type (rhymes, synonyms, similar-sounding, or strongly associated terms), each with an association strength score.

## 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-rhymes-synonyms-api-41496103/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)
