
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@ftw-cloud/cod-mw-api
Advanced tools
Call of Duty Api is a promised based wrapper for the "private" API that Activision use on the callofduty.com website.
npm install call-of-duty-api
const API = require("call-of-duty-api")();
or
const API = require("call-of-duty-api")({ platform: "battle" });
//How to access
API.platforms.psn;
Please note:
uno is for looking up via activision ID and this is only supported on a couple of endpoints.
const API = require('call-of-duty-api')();
API.login("<email>", "<password>").then(<?>).catch(<?>);
I have implemented axios-rate-limit incase you want to implement your own rate limitting. All you need to do is pass a ratelimit object when initializing the module.
const API = require("call-of-duty-api")({
platform: "battle",
ratelimit: { maxRequests: 2, perMilliseconds: 1000, maxRPS: 2 },
});
You can find out more about axios-rate-limit here
API.MWstats(<gamertag>, API.platforms.<platform>).then((output) => {
console.log(output);
}).catch((err) => {
console.log(err);
});
{
title: 'mw',
platform: 'platform',
username: 'gamertag',
mp:
{ lifetime: { all: [Object], mode: [Object] },
weekly: null,
level: 0,
maxLevel: 0,
levelXpRemainder: 0,
levelXpGained: 0,
prestige: 0,
prestigeId: 0,
maxPrestige: 0 },
zombies:
{ lifetime: { all: [Object], mode: {} },
weekly: { all: [Object], mode: {} } },
engagement: { timePlayedAll: 440544, seasonPass: 1 }
}
const API = require("call-of-duty-api")({ platform: "battle" });
//I want Warzone Data
API.MWBattleData("Lierrmm#2364")
.then((data) => {
console.log(data); // see output
})
.catch((err) => {
console.log(err);
});
[
(br: {
wins: 1,
kills: 77,
kdRatio: 1.2833333333333334,
downs: 70,
topTwentyFive: 20,
topTen: 11,
contracts: 15,
revives: 0,
topFive: 6,
score: 55600,
timePlayed: 27169,
gamesPlayed: 20,
scorePerMinute: 122.78699988958003,
cash: 0,
deaths: 60,
title: "br",
}),
(br_dmz: {
wins: 0,
kills: 9,
kdRatio: 1.2857142857142858,
downs: 11,
topTwentyFive: 0,
topTen: 0,
contracts: 2,
revives: 0,
topFive: 0,
score: 4574,
timePlayed: 1786,
gamesPlayed: 1,
scorePerMinute: 153.66181410974244,
cash: 53,
deaths: 7,
title: "br_dmz",
}),
(br_all: {
wins: 1,
kills: 86,
kdRatio: 1.2835820895522387,
downs: 81,
topTwentyFive: 20,
topTen: 11,
contracts: 17,
revives: 0,
topFive: 6,
score: 60174,
timePlayed: 28955,
gamesPlayed: 21,
scorePerMinute: 124.6914177171473,
cash: 53,
deaths: 67,
title: "br_all",
}),
];
FAQs
Wrapper for the Call Of Duty API.
We found that @ftw-cloud/cod-mw-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.