Unity get words form web

So, my plan is to get a list of every word in the english alphabet, and then get one synonym for every adjective in the string. my problem is that i have no idea how to get information from a website. i don’t know any website that works good for this, but i don’t know what im seaching for. im a C# programmer and is quite familiar with the language, but im really new to getting information from a website. I would really appreciate if someone could help me. i don’t need a full done code, just something to stand on and a good explanation! thanks in Advance!

//Gaffa

Try having a look at Unity - Scripting API: WWW

If you don’t plan on making the Web part yourself then your best bet is to search for websites that might work for your game, though making a game that depends on a outside source that you are not in control of isn’t very wise + the website might try to block your request in the worst case which would, of course, break your game.

You could always just make a server yourself that would serve this purpose, though I do not see any reason why you wouldn’t use a local database for that instead, though I’m sure that you have good reasons for that. :slight_smile: