/v1/user
A creator's profile and their projects
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/modrinth-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/modrinth-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/modrinth-api/v1/user");
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/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"id": "TEZXhE2U",
"bio": "Professional idiot at day, maniac programmer by night.",
"url": "https://modrinth.com/user/jellysquid3",
"name": null,
"avatar": "https://cdn.modrinth.com/user/TEZXhE2U/f4705a5f2388c65029ae2e59f1434b3e6e4de23a.png",
"joined": "2021-01-03T00:49:18.373336Z",
"source": "Modrinth",
"projects": [
{
"slug": "sodium",
"title": "Sodium",
"downloads": 166791786,
"followers": 37273,
"project_type": "mod"
},
{
"slug": "lithium",
"title": "Lithium",
"downloads": 98782569,
"followers": 21770,
"project_type": "mod"
},
{
"slug": "phosphor",
"title": "Phosphor",
"downloads": 820117,
"followers": 2878,
"project_type": "mod"
},
{
"slug": "hydrogen",
"title": "Hydrogen",
"downloads": 420867,
"followers": 1014,
"project_type": "mod"
}
],
"username": "jellysquid3",
"project_count": 4,
"total_downloads": 266815339
},
"meta": {
"timestamp": "2026-06-13T13:54:18.900Z",
"request_id": "06886065-e865-41ce-9e33-fb2bba2d2720"
},
"status": "ok",
"message": "User retrieved successfully",
"success": true
}