Is it possible to api the roblox wiki?

I am trying to make a plugin that uses the wiki but is there a API for that?

1 Like

Do you mean developer.roblox.com, or do you mean the fandom wiki?

I mean developer.roblox.com is what I want the api to

There isn’t but you could still make direct requests to its pages & scrape their contents.

How could I achieve that? or how would the code look like

1 Like

You can use sites like https://reqbin.com/ to “craft” HTTP requests. Paste in a URL like PVInstance, click send and you should get a response that contains the HTML for the web page. If you click the Raw tab, you can see exactly what the HTTP request you sent contained. If you use HttpService to send a request like that, you should get the exact same HTML content as a string.