The "endpoint" parameter must be a valid type
"https://neko-love.xyz/v1/neko/neko-love_54.jpg"
local json = require("json");local coro = require("coro-http")function nekoGET(type)local link = "https://neko-love.xyz/api/v1/"..typelocal result, body = coro.request("GET", link)body = json.parse(body) -- Return Bodyreturn body["url"] -- Return the image linkendnekoGET("neko") -- The desired endpoint is added in parameter