curl --request GET \
--url https://api.example.com/api/game/question{
"targetItemId": "<string>",
"targetItemName": "<string>",
"targetItemImageUrl": "<string>",
"correctComponentIds": [
"<string>"
],
"correctComponents": [
{
"itemId": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"cost": 123
}
],
"options": [
{}
],
"timeLimit": 123,
"difficulty": "<string>"
}Generate a new crafting question for the game
curl --request GET \
--url https://api.example.com/api/game/question{
"targetItemId": "<string>",
"targetItemName": "<string>",
"targetItemImageUrl": "<string>",
"correctComponentIds": [
"<string>"
],
"correctComponents": [
{
"itemId": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"cost": 123
}
],
"options": [
{}
],
"timeLimit": 123,
"difficulty": "<string>"
}EASY - Simple items with fewer componentsMEDIUM - Moderate complexity itemsHARD - Complex items with multiple componentsMEDIUM if not provided.curl -X GET "https://api.crafterlol.com/api/game/question?difficulty=HARD"
{
"targetItemId": "3078",
"targetItemName": "Trinity Force",
"targetItemImageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3078.png",
"correctComponentIds": ["3044", "3051", "3057"],
"correctComponents": [
{
"itemId": "3044",
"name": "Phage",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3044.png",
"cost": 1100
},
{
"itemId": "3051",
"name": "Hearthbound Axe",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3051.png",
"cost": 1100
},
{
"itemId": "3057",
"name": "Sheen",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3057.png",
"cost": 700
}
],
"options": [
{
"itemId": "3044",
"name": "Phage",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3044.png",
"cost": 1100
},
{
"itemId": "3051",
"name": "Hearthbound Axe",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3051.png",
"cost": 1100
},
{
"itemId": "3057",
"name": "Sheen",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/3057.png",
"cost": 700
},
{
"itemId": "1001",
"name": "Boots",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/1001.png",
"cost": 300
},
{
"itemId": "1036",
"name": "Long Sword",
"imageUrl": "https://ddragon.leagueoflegends.com/cdn/16.3.1/img/item/1036.png",
"cost": 350
}
],
"timeLimit": 45,
"difficulty": "HARD"
}