I am trying to make a plugin that uses the wiki but is there a API for that?
1 Like
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.