/v1/artifact
An artifact set by name, or the full list
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/genshin-api/v1/artifact" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/genshin-api/v1/artifact", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/genshin-api/v1/artifact");
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/genshin-api/v1/artifact",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"artifact": {
"id": "archaic-petra",
"name": "Archaic Petra",
"max_rarity": 5,
"2-piece_bonus": "Gain a 15% Geo DMG Bonus.",
"4-piece_bonus": "Upon obtaining an Elemental Shard created through a Crystallize Reaction, all party members gain a 35% DMG Bonus for that particular element for 10s. Only one form of Elemental DMG Bonus can be gained in this manner at any one time."
}
},
"meta": {
"timestamp": "2026-06-01T00:04:32.038Z",
"request_id": "bb1ce8a5-a503-474a-87f1-cad9a0ba0c12"
},
"status": "ok",
"message": "Artifact retrieved",
"success": true
}