Retrieve information about consumables.
Example Request:
GET https://api.openalbion.com/api/v3/consumables
Example Response:
{
"data": [
{
"id": 1,
"name": "Avalonian Chicken Omelette",
"tier": "3.0",
"item_power": 500,
"identifier": "T3_MEAL_OMELETTE_AVALON",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Avalonian Chicken Omelette at the Cook\nAvalonian Chicken Omelette may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Avalonian Chicken Omelette last for 30 minutes\nAvalonian Chicken Omelette per craft: 10\n"
},
{
"id": 2,
"name": "Avalonian Goose Omelette",
"tier": "5.0",
"item_power": 800,
"identifier": "T5_MEAL_OMELETTE_AVALON",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Avalonian Goose Omelette at the Cook\nAvalonian Goose Omelette may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Avalonian Goose Omelette last for 30 minutes\nAvalonian Goose Omelette per craft: 10\n"
},
{...}
]
}
Retrieve information about consumables by category.
category_id
: Filter the consumables by category. Example: 52
Example Request:
GET https://api.openalbion.com/api/v3/consumables?category_id=52
Example Response:
{
"data": [
{
"id": 1,
"name": "Avalonian Chicken Omelette",
"tier": "3.0",
"item_power": 500,
"identifier": "T3_MEAL_OMELETTE_AVALON",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Avalonian Chicken Omelette at the Cook\nAvalonian Chicken Omelette may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Avalonian Chicken Omelette last for 30 minutes\nAvalonian Chicken Omelette per craft: 10\n"
},
{
"id": 2,
"name": "Avalonian Goose Omelette",
"tier": "5.0",
"item_power": 800,
"identifier": "T5_MEAL_OMELETTE_AVALON",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Avalonian Goose Omelette at the Cook\nAvalonian Goose Omelette may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Avalonian Goose Omelette last for 30 minutes\nAvalonian Goose Omelette per craft: 10\n"
},
{...}
]
}
Retrieve information about consumables by subcategory.
subcategory_id
: Filter the consumables by subcategory. Example: 53
Example Request:
GET https://api.openalbion.com/api/v3/consumables?subcategory_id=53
Example Response:
{
"data": [
{
"id": 1,
"name": "Avalonian Chicken Omelette",
"tier": "3.0",
"item_power": 500,
"identifier": "T3_MEAL_OMELETTE_AVALON",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Avalonian Chicken Omelette at the Cook\nAvalonian Chicken Omelette may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Avalonian Chicken Omelette last for 30 minutes\nAvalonian Chicken Omelette per craft: 10\n"
},
{
"id": 2,
"name": "Avalonian Goose Omelette",
"tier": "5.0",
"item_power": 800,
"identifier": "T5_MEAL_OMELETTE_AVALON",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Avalonian Goose Omelette at the Cook\nAvalonian Goose Omelette may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Avalonian Goose Omelette last for 30 minutes\nAvalonian Goose Omelette per craft: 10\n"
},
{...}
]
}
Retrieve information about consumables by tier.
tier
: Filter the consumables by tier. Example: 4
Example Request:
GET https://api.openalbion.com/api/v3/consumables?tier=4
Example Response:
{
"data": [
{
"id": 18,
"name": "Midwater Octopus Salad",
"tier": "4.0",
"item_power": 700,
"identifier": "T4_MEAL_SALAD_FISH",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Midwater Octopus Salad at the Cook\nMidwater Octopus Salad may add nutrition to crafting stations\nPlayers may only have one type of Food active at one time\nEffects of Midwater Octopus Salad last for 2 minutes\nMidwater Octopus Salad per craft: 1\n"
},
{
"id": 22,
"name": "Turnip Salad",
"tier": "4.0",
"item_power": 700,
"identifier": "T4_MEAL_SALAD",
"icon": "https://render.albiononline.com/v1/item/[email protected]?quality=0&size=217&locale=en",
"info": "Players may craft Turnip Salad at the Cook\nTurnip Salad may add nutrition to crafting stations and is the Favorite Dish at the Toolmaker\nPlayers may only have one type of Food active at one time\nEffects of Turnip Salad last for 30 minutes\nTurnip Salad per craft: 10 ( takes 2.16 nutrition to make 10 based on the equation: (item value)*.01125 )\n"
},
{...}
]
}