/v1/project
A project in full
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/modrinth-api/v1/project" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/modrinth-api/v1/project", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/modrinth-api/v1/project");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/modrinth-api/v1/project",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"url": "https://modrinth.com/mod/sodium",
"slug": "sodium",
"title": "Sodium",
"source": "Modrinth",
"license": "LicenseRef-Polyform-Shield-1.0.0",
"loaders": [
"fabric",
"neoforge",
"quilt"
],
"updated": "2026-06-12T00:47:33.259264Z",
"downloads": 166010755,
"followers": 37192,
"published": "2021-01-03T00:53:34.185936Z",
"categories": [
"optimization"
],
"client_side": "required",
"server_side": "unsupported",
"project_type": "mod",
"latest_game_version": "26.2-rc-1",
"supported_game_versions": 36
},
"meta": {
"timestamp": "2026-06-12T01:42:09.988Z",
"request_id": "84042f4a-6135-4961-bdf1-4b9f6c4910ab"
},
"status": "ok",
"message": "Project retrieved successfully",
"success": true
}