Check if word exists

How would I use this dictionary API to check if a word exists?

https://dictionaryapi.dev/

You would send a GET request using HTTPService on Roblox with a link similar to the one posted on that page.
If you get a response from the website then the word exists, if you get a 404 Error, then it doesn’t or the website just doesn’t support that word.
In this case, you should 100% wrap the entire thing in a pcall() function so that your script does not fail entirely and break.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.