GnistAI GnistAI
Log in

Rhyme Finder

Find perfect rhymes, near rhymes, sound-alike words, and spelling pattern matches powered by the Datamuse word API.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 type: api wrapper type type api wrapper api wrapper lifecycle: maintained lifecycle lifecycle maintained maintained Reference

Data source: Datamuse

REST Bridge Endpoint https://context.gnist.ai/rest/rhyme-finder/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (5)

find_rhymes

Find perfect rhymes for a word.

Returns words that rhyme perfectly with the given word, ranked by relevance score.
Includes syllable count when available.

ParameterTypeRequiredDescription
wordstringrequiredWord to find perfect rhymes for (e.g. 'love', 'time', 'moon').
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
Request Body
{
  "word": "example"
}
find_near_rhymes

Find near/approximate rhymes for a word.

Returns words that approximately rhyme with the given word (e.g. 'north' and 'fourth').

ParameterTypeRequiredDescription
wordstringrequiredWord to find near/approximate rhymes for.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
Request Body
{
  "word": "example"
}
find_sounds_like

Find words that sound like a given word.

Useful for finding homophones, near-homophones, and phonetically similar words.

ParameterTypeRequiredDescription
wordstringrequiredWord or phrase to find similar-sounding words for.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
Request Body
{
  "word": "example"
}
find_spelled_like

Find words matching a spelling pattern.

Supports wildcards: ? matches a single character, * matches any number of characters.
E.g. 'b?t' matches 'bat', 'bet', 'bit', 'bot', 'but'.

ParameterTypeRequiredDescription
patternstringrequiredSpelling pattern with optional wildcards (? = single char, * = any chars). E.g. 'b?t', 'pre*'.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
Request Body
{
  "pattern": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/rhyme-finder/find_rhymes" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"word": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/rhyme-finder/find_rhymes",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "word": "example"
},
)
print(resp.json())

Related Toolkits (Reference)

Resources