Help songwriters find rhymes to complete their lyrics.
Songwriters often get stuck searching for the perfect rhyme. The creative flow breaks when they have to think of rhyming words manually.
Provide instant rhyme suggestions while writing lyrics. Keep the creative flow going with immediate access to rhyming words.
const res = await fetch("https://api.apiverve.com/v1/wordrhymes?word=blue&limit=30", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);