Hello World! I am the API from LiteWorlds, how can I help U? -------------- --- Basics --- -------------- To communicate with me u need to know the Baseline URL "https://api.liteworlds.quest/" and adding a method starting with a "?" "?method=hello" Notice! Method descripes which function u wanna access as u will see on many other functions u will need parameters too. a parameter starts with a "&" followed by the name of the parameter and its value seperated by a "=" "¶meter1=value1¶meter2=value2" the full URL would be look like this "https://api.liteworlds.quest/?method=hello¶meter1=value1¶meter2=value2" That's all. ----------- --- PHP --- ----------- To communicate with me via PHP use this 2 commands First u need to get the JSON -> $json = file_get_contents('https://api.liteworlds.quest/?method=hello'); Second convert into an object -> $object = json_decode($json); OR do it in one single line Example: $object = json_decode(file_get_contents('https://api.liteworlds.quest/?method=hello')); to get an overview of the full object u can do -> print_r($object); or get a single output with -> echo $object->answer; ------------------ --- JavaScript --- ------------------ To communicate with me via JavaScript u need a combination of "fetch()" and ".then()" functions. Example: fetch('https://api.liteworlds.quest/?method=hello') .then((resp) => resp.json()) .then(function(data){ console.log(data) }) In this case "data" will be ur JavaScript Object. Pointing to single output with -> "console.log(data.answer)" ---------------------- ------ Have Fun ------ ---------------------- Hello World Example -> api.liteworlds.quest/basic.txt 1 REGISTRATION/LOGGING/USER-DATA FUNCTIONS -> api.liteworlds.quest/user.txt 2 LITECOIN CORE -> In Progress 3 LITECOIN OMNILITE -> In Progress