/v1/recipe
Recipes by output/input/id
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}