For my game I would like to retrieve a random word along with a definition from a website/API.
The website I would like to get the random word and definition from is ‘https://randomword.com’.
I cant seem to find an API linked to this website so I can make my own requests. I can seem to scrape the data by doing response = HTTPService:GetAsync(url) and printing it raw.
The image shows the response I get.

I know in other languages such as python you can access the classes and id’s to get the data you want but I don’t know how I would go about this in Lua.
I have checked other forums post and the closest solution I could find was someone referencing another API ‘https://random-word-api.herokuapp.com/home’. This solution worked until the website eventually crashed.
My game is based around random words so whenever I make multiple requests to this website I get error codes (error 503 - server unable to handle request).
Any help is much appreciated, thanks.