Unofficial API for Call of Duty: Warzone, this plugin does not guarantee 100% functionality, as it may change.
With this API you can query:
- All data played
- BR mode
- Plunder mode
- Resurgence mode
Supported platforms:
✅ Web
✅ Windows
✅ MacOS
✅ Linux
✅ Android
✅ iOS
WarzoneApi warzoneApi = WarzoneApi();
List<WarzoneSearch> usersFounds = await warzoneApi.fetchUser(username: "RaiiLKilleR#8661004", platform: Platform.atvi);
WarzoneProfile warzoneProfile = await warzoneApi.search(username: "RaiiLKilleR", platform: Platform.atvi);
List<WarzoneMatch> matchsFounds = await warzoneApi.fetchMatchesPlayedFromUser(username: "RaiiLKilleR#8661004", platform: Platform.atvi);
WarzoneMatch matchFound = await warzoneApi.fetchMatchFromUser(attributeIdFromMatch: '10005806731254879321');
enum Platform {
/// [atvi] : Activision users
atvi,
/// [psn] : Playstation users
psn,
/// [xbl] : Xbox Live users
xbl,
/// [battlenet] : battlenet users
battlenet
}