# COD Tracker A lightweight Node.js application to track and display Call of Duty stats across multiple game titles. ## Overview COD Tracker provides a clean interface to fetch, display, and export Call of Duty player statistics. The application supports multiple COD titles including Modern Warfare, Warzone, Modern Warfare 2, Warzone 2, Modern Warfare 3, Cold War, Vanguard, and Warzone Mobile. ## Features - Player stats lookup across all supported COD titles - Match history retrieval - Individual match details - User profile information - Player search functionality - Export data as JSON or YAML - Time format conversion options - Duration display for time-based statistics ## Prerequisites - [Node.js](https://nodejs.org/) (v14.x or higher) - npm (comes with Node.js) - Call of Duty account with API security settings set to "ALL" ## Authentication Setup ### Changing Account API Privacy Settings To use this application, you need to update your Call of Duty profile settings: 1. Log in to [Call of Duty](https://profile.callofduty.com/cod/profile) 2. Navigate to the **Privacy & Security** tab 3. Scroll down to **Game Data and Profile Privacy** section 4. Set the following options to **ALL**: - Game Tag Searchable - Game Play Data ### Obtaining Your SSO Token
The application requires an authentication token to access the Call of Duty API: 1. Log in to [Call of Duty](https://profile.callofduty.com/cod/profile) 2. Open developer tools (F12 or right-click → Inspect) 3. Navigate to: **Application** → **Storage** → **Cookies** → **https://profile.callofduty.com** 4. Find and copy the value of `ACT_SSO_COOKIE` 5. Paste this token into the "SSO Token" field > ⚠️ **Note**: Your SSO token is sensitive information. Never share it publicly. | ``` Application └─ Storage └─ Cookies └─ ACT_SSO_COOKIE ``` |