And again a change for Overwatch

Hi there,

I host the free API owapi(.eu) but now I have an issue since the latest patch. Previously I got the Namecard ID, then I took the ID and push it to another website to get the Image URL. First Step works, second not :smiley:

Example:
First search on https://overwatch.blizzard.com/en-us/search/account-by-name/Domekologe contains
“namecard”: “0x0250000000006449”,
Then it will be go forward to
https://overwatch.blizzard.com/en-us/search/unlocks/?unlockIds=0x0250000000006449
But this website didn’t exists any longer.
Is there any new site which I can use to transform the ID Number to an valid URL?

Thank you

Update:
I found a solution for myself
If someone else got this…
URL is still the same

You only need some headers like these

req.Header.Set(“Accept”, “/”)
req.Header.Set(“User-Agent”, “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36”)
req.Header.Set(“Referer”, “Overwatch 2 - Player Search”)
req.Header.Set(“Accept-Language”, “en,de-DE;q=0.9,de;q=0.8,en-US;q=0.7”)
req.Header.Set(“X-Requested-With”, “XMLHttpRequest”)
req.Header.Set(“Sec-Fetch-Dest”, “empty”)
req.Header.Set(“Sec-Fetch-Mode”, “cors”)
req.Header.Set(“Sec-Fetch-Site”, “same-origin”)
req.Header.Set(“Sec-CH-UA”, “"Chromium";v="135", "Not-A.Brand";v="99"”)
req.Header.Set(“Sec-CH-UA-Mobile”, “?0”)
req.Header.Set(“Sec-CH-UA-Platform”, “"Windows"”)

In this case: happy coding and Blizzard, if you read this… please… when you don’t want that we use this information, then create an official API!