Our Custom Mod List
curl -X get https://api.teaclient.net/mods/
let client = reqwest::Client::new();let res = client.request("get", "https://api.teaclient.net/mods/") .header(None) .body(None) .send() .await .unwrap();
const res = await fetch("https://api.teaclient.net/mods/", { method: "get", headers: {}, body: null});
{ "mods": [ { "name": "Example", "author": "None", "git": null, "licence": null, "homepage": "https://example.com/", "mc_version_reccomended": [ "1.21.1" ], "description": "example mod" }, ], "blocked_mods": [ { "name": "exampleMod", "reason": "reason of why it's blocked" } ]}