HTTP 403 Forbidden

Im trying to make a GET request to something like pastebin called paste.ee
its not pastebin but exactly like it.
I kept getting 403 Forbidden when doing so…

local HttpService = game:GetService("HttpService")

local listurl = "https://api.paste.ee/v1/pastes?key=MyKeyHere"
local GetList = HttpService:GetAsync(listurl)	

local PasteID = HttpService:JSONDecode(GetList)

print(PasteID)

This is a serverscript and i also have HTTP Requests enabled.

Have you tried going to the link with your browser? Maybe there’s something wrong with your key.

1 Like

Returns a json of my recent pastes.

Nvm for some odd reason the API was throwing a ServerOffline error.
Its fixed now!