curl -X GET https://api.teaclient.net/mods/blocked
let client = reqwest::Client::new();let res = client.request("GET", "https://api.teaclient.net/mods/blocked") .header(None) .body(None) .send() .await .unwrap();
const res = await fetch("https://api.teaclient.net/mods/blocked", { method: "GET", headers: {}, body: null});
{ "mods": null, "blocked_mods": [ { "name": "exampleClient", "reason": "Minecraft Client" }, ... ]}