/v1/members
The team behind a project
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/members" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/modrinth-api/v1/members", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/modrinth-api/v1/members");
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/members",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"slug": "sodium",
"count": 3,
"source": "Modrinth",
"members": [
{
"name": null,
"role": "Maintainer",
"avatar": "https://avatars3.githubusercontent.com/u/31803019?v=4",
"user_id": "DzLrfrbK",
"username": "IMS"
},
{
"name": null,
"role": "Project Lead",
"avatar": "https://cdn.modrinth.com/user/TEZXhE2U/f4705a5f2388c65029ae2e59f1434b3e6e4de23a.png",
"user_id": "TEZXhE2U",
"username": "jellysquid3"
},
{
"name": null,
"role": "Maintainer",
"avatar": "https://avatars.githubusercontent.com/u/17120022?v=4",
"user_id": "PSleyMoH",
"username": "douira"
}
]
},
"meta": {
"timestamp": "2026-06-13T13:54:18.540Z",
"request_id": "c9af746b-b731-4b94-8410-0372f232ab73"
},
"status": "ok",
"message": "Members retrieved successfully",
"success": true
}