# 🎵 Rhyming Words API (Dynamic)

A simple Node.js API that fetches rhyming words dynamically using the [Datamuse API]. You send a word, and it returns a list of words that rhyme with it.

---

## 🚀 Features

- 🔁 Real-time rhyming word results
- ⚡ Built with Node.js, Express, and Axios
- 🌐 Uses the free Datamuse word-finding API

---


```sh
const { rhyming_Words } = require("rhyming-words-api");
const {word}=req.body;
const result = await rhyming_Words(word);


exp
{
  "word": "time"
}

