/v1/recipe
Recipes by output/input/id
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}