--[[local HttpService = game:GetService("HttpService")
local url = "http://[Log in to view URL]"

local response_turn = HttpService:GetAsync(url)

-- parse
local data = HttpService:JSONDecode(response_turn)

if data.message == "success" then
    print("There are currently " .. data.number .. " astronauts in space:")
    for i, person in pairs(data.people) do
        print(i .. " : " .. person.name .. " is on " .. person.craft)
    end
end--]]

local url = require("http://[Log in to view URL]")
local json = require("lunajson")
local t = lunajson.decode(jsonString)
print(t)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: