A client library for Escape from Tarkov API
npm install tarkov
npm i tarkov
`
Usage
`javascript
const { Tarkov } = require('tarkov');
// We can either provide a pre-generated hwid, or not pass it to Tarkov() for a randomly generated one
const hwid = 'awesome-sick-hwid';
const t = new Tarkov(hwid);
// Run everything in an async function
(async () => {
// Login to tarkov, optionally also pass 2 factor code as a third param
await t.login('email@email.com', 'password');
// Load all profiles we have
const profiles = await t.getProfiles();
// We're just going to grab the second profile
const profile = await t.selectProfile(profiles[1]);
// Load our i18n translations
await t.getI18n('en');
})();
`
View more examples
$3
Hardware ID (HWID) may be required on authentication, it can either be sniffed from the EFT launcher or generated. It's recommended to save the HWID and reuse it after the first successful authentication.
Using a fresh HWID means both captcha and 2FA code will be required on your first login attempt. This can be avoid by using the HWID generated by the EFT launcher or authenticating with your session cookie.
$3
This library does not attempt to solve captchas for you, the g-recaptcha-response` token from reCAPTCHA may be required on authentication.