warzone_api 1.0.20 copy "warzone_api: ^1.0.20" to clipboard
warzone_api: ^1.0.20 copied to clipboard

Unofficial API for Call of Duty Warzone, this plugin does not guarantee 100% functionality, as it may change.

Unofficial API for Call of Duty: Warzone, this plugin does not guarantee 100% functionality, as it may change. #

API functionality #

With this API you can query:

  • All data played
  • BR mode
  • Plunder mode
  • Resurgence mode

Getting started #

Supported platforms:
✅ Web

✅ Windows

✅ MacOS

✅ Linux

✅ Android

✅ iOS

Usage #

[WarzoneApi] Instance #

WarzoneApi warzoneApi = WarzoneApi();

[WarzoneSearch] Consult the data of a player #

List<WarzoneSearch> usersFounds = await warzoneApi.fetchUser(username: "RaiiLKilleR#8661004", platform: Platform.atvi);

[WarzoneProfile] Search players by name and platform #

WarzoneProfile warzoneProfile = await warzoneApi.search(username: "RaiiLKilleR", platform: Platform.atvi);

[WarzoneMatch] Get the user's last played games #

List<WarzoneMatch> matchsFounds = await warzoneApi.fetchMatchesPlayedFromUser(username: "RaiiLKilleR#8661004", platform: Platform.atvi);

[WarzoneMatch] Get information about the game played #

WarzoneMatch matchFound = await warzoneApi.fetchMatchFromUser(attributeIdFromMatch: '10005806731254879321');

There are several platforms to find the user #

enum Platform {
  /// [atvi] : Activision users
  atvi,

  /// [psn] : Playstation users
  psn,
  
  /// [xbl] : Xbox Live users
  xbl, 

  /// [battlenet] : battlenet users
  battlenet 
}
1
likes
130
points
71
downloads

Publisher

unverified uploader

Weekly Downloads

Unofficial API for Call of Duty Warzone, this plugin does not guarantee 100% functionality, as it may change.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

http

More

Packages that depend on warzone_api