Zum Inhalt springen
GET /v1/recipe

Recipes by output/input/id

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gw2-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/gw2-api/v1/recipe" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gw2-api/v1/recipe", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gw2-api/v1/recipe");
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/gw2-api/v1/recipe",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 2,
        "query": {
            "output": 46742
        },
        "recipes": [
            {
                "id": 12053,
                "type": "RefinementEctoplasm",
                "flags": [
                    "AutoLearned"
                ],
                "min_rating": 400,
                "disciplines": [
                    "Jeweler"
                ],
                "ingredients": [
                    {
                        "count": 50,
                        "item_id": 19684
                    },
                    {
                        "count": 1,
                        "item_id": 19721
                    },
                    {
                        "count": 10,
                        "item_id": 46747
                    }
                ],
                "output_count": 1,
                "output_item_id": 46742
            },
            {
                "id": 7319,
                "type": "RefinementEctoplasm",
                "flags": [
                    "AutoLearned"
                ],
                "min_rating": 450,
                "disciplines": [
                    "Leatherworker",
                    "Armorsmith",
                    "Tailor",
                    "Artificer",
                    "Weaponsmith",
                    "Huntsman"
                ],
                "ingredients": [
                    {
                        "count": 50,
                        "item_id": 19684
                    },
                    {
                        "count": 1,
                        "item_id": 19721
                    },
                    {
                        "count": 10,
                        "item_id": 46747
                    }
                ],
                "output_count": 1,
                "output_item_id": 46742
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:42.702Z",
        "request_id": "06603062-1b3f-4702-91da-9813d49cc832"
    },
    "status": "ok",
    "message": "Recipe retrieved",
    "success": true
}