Datamuse
A word-finding engine for rhymes, synonyms and more
Datamuse answers word queries: give it constraints like 'rhymes with blue' or 'means almost the same as X' and it returns ranked word suggestions as JSON. The /words endpoint takes parameters such as rel_rhy, ml and sp, all keyless. Great for writing tools, word games and autocomplete.
GET https://api.datamuse.com/words?rel_rhy=blue&max=2
[
{
"word": "slew",
"score": 41039,
"numSyllables": 1
},
{
"word": "subdue",
"score": 31034,
"numSyllables": 2
}
]curl "https://api.datamuse.com/words?rel_rhy=blue&max=2"const res = await fetch("https://api.datamuse.com/words?rel_rhy=blue&max=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.datamuse.com/words?rel_rhy=blue&max=2")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/words?rel_rhy=blue&max=2PROBEDA word-finding engine for rhymes, synonyms and more
/words?limit=5Words — documented GET route.
/words?page=1Words — documented GET route.
/words?ml=ringing+in+the+ears&max=4Words — documented GET route.
/metricsOperational metrics.
/words?ml=ringing+in+the+earsWords — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Datamuse: common questions
Is Datamuse free to use?
Yes — Datamuse is a free open data API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Datamuse need an API key?
No — Datamuse needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Datamuse from the browser?
Not directly — Datamuse doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Datamuse up right now?
As of our last scheduled check, Datamuse is healthy with 92.2% uptime over 90 days and a 180 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.