Ir al contenido
GET /v1/artifact

An artifact set by name, or the full list

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/genshin-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}