Hello,
(For wow classic) I have an item id and I want to get the stats for this item. How do I go about doing this?
I can get the item and media via the game data apis ( /data/wow/item/{itemId}), but it doesn’t include stats such as: str, sta, agi, int, hit, etc
Is there an api (or flag) I’m missing to get this info?
No, the API doesn’t have that information for classic.

It’s really hard to catch up to apps out there that already have this data. Is there anywhere that I can download a database with all items & stats, spell ids, etc?
For what it’s worth, you can use wowhead XML API
Is that free to use for everyone?
The current item APIs give you that data…
"stats": [
{
"type": {
"type": "STRENGTH",
"name": "Strength"
},
"value": 16,
"display": {
"display_string": "+16 Strength",
"color": {
"r": 255,
"g": 255,
"b": 255,
"a": 1
}
}
},
{
"type": {
"type": "STAMINA",
"name": "Stamina"
},
"value": 21,
"display": {
"display_string": "+21 Stamina",
"color": {
"r": 255,
"g": 255,
"b": 255,
"a": 1
}
}
},
{
"type": {
"type": "INTELLECT",
"name": "Intellect"
},
"value": 21,
"display": {
"display_string": "+21 Intellect",
"color": {
"r": 255,
"g": 255,
"b": 255,
"a": 1
}
}
},
{
"type": {
"type": "SPIRIT",
"name": "Spirit"
},
"value": 5,
"display": {
"display_string": "+5 Spirit",
"color": {
"r": 255,
"g": 255,
"b": 255,
"a": 1
}
}
},
That wasn’t the case when I originally made this post., but I’m so happy that it’s showing up now!
Now just need spell info 
Hi Everyone,
are you sure Stats are showing up in the classic API? I can’t find them.
Where can I find more informations in regards of the Wowhead API? Just found a posting this was not continued anymore.
BR