NewConnect Claude, Gemini, ChatGPT, and other AI agents to API Ninjas via our MCP server

Rhyme API

The Rhyme API allows you to look up rhyming words for any given English word.

(4.4)

From 6,026 users

3,300+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
289ms338ms358ms783ms1114ms

Didn't find what you were looking for? Suggest an improvement


/v1/rhyme GET

https://api.api-ninjas.com/v1/rhyme

Returns a list of rhyming words for any given word.

Parameters

  • word  required

    Word to look up.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of strings where each string is a word that rhymes with the input word, or an error if the request is unsuccessful.

Sample Request Live Demo!

word

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/rhyme?word=rhyme

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
[
    "all-time",
    "anticrime",
    "anticrime",
    "beim",
    "chime",
    "climb",
    "clothestime",
    "crime",
    "dime",
    "grime",
    "haim",
    "heim",
    "hime",
    "i'm",
    "kime",
    "lime",
    "lyme",
    "mime",
    "one-time",
    "onetime",
    "part-time",
    "prime",
    "rime",
    "seim",
    "sime",
    "slime",
    "sublime",
    "syme",
    "thyme",
    "time"
]

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/rhyme?word=rhyme" \ -H "X-Api-Key: YOUR_API_KEY"

If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.

Frequently Asked Questions

  • Yes, but you must have a premium subscription. Commercial use of the Rhyme API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.
  • The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.
  • Send a GET request to the /v1/rhyme endpoint with the required word parameter set to the English word you want to rhyme, for example word=rhyme. See the API directory for other text tools.
  • The response is a JSON array of strings, where each string is a word that rhymes with the input word, or an error if the request is unsuccessful. You can create a free account to try it on the live demo.
  • It is useful for building poetry and songwriting tools, word games, and creative writing assistants that suggest rhyming words for any English word. Pair it with the Thesaurus API or Dictionary API for richer language features.
  • Yes, the word parameter accepts any given English word and returns rhyming English words. For random English words to feed into it, try the Random Word API.