We implemented fast and adaptable search algorithms so you don't have to wait, while creating a responsive interface that makes sense. Modrinth is full of elegant mod discovery and a platform platform which just works.
Modrinth intends to give back to the community, not leech from it. That's why we are giving one hundred percent of ad revenue back to modders, while creating easy to use tools for every modder to publish their mods on the Modrinth platform.
Modrinth's code is fully open source licensed under AGPL. We've created a high peformant Rust based backend that is fully documented for all kinds of tools to use. Our team is dedicated to maintaining an open source ecosystem for all Modrinth applications.
const fetch = require('node-fetch');
fetch('https://api.modrinth.com/api/v1/mod').then(res => res.json()).then(data => {
console.log(data);
// hits: [Object {author: "mezz", author_url: …, …}, …]
// limit: 10
// offset: 0
/// total_hits: 19440
});