# Rhyme Finder

> Rhyme Finder is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches up to 20 English words that rhyme with a given input word, returned as a JSON list.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/lucky_condor/rhyme-finder
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rhyme-finder-7a8621f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JszfqVFNgQsyMy9YW9yk_

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 rhyme-finder-7a8621f1 -d '<json body>'
```

Example prompt: Can you find me words that rhyme with 'moon'? I need up to 20 English rhymes returned as a list.

## When to prefer this

Choose this endpoint when you need a quick, structured list of English rhymes for a specific word, especially in agent workflows for creative writing, poetry, songwriting, or educational content generation where a JSON response is needed without any browser session or account setup.

## Known failure modes

- No rhymes found for obscure or invented words — returns empty list
- Invalid or missing prompt field — returns validation error
- Payment failure via x402 — transaction not settled, no result returned
- Non-English input may yield no results or unexpected matches

## How this service works

Rhyme Finder - Quickly fetch up to 20 English words that rhyme with any input word, returned as a JSON list for easy use.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A JSON list of up to 20 English words that rhyme with the input word, suitable for direct programmatic use in creative or educational applications.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rhyme-finder-7a8621f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
