New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

faceit-node-api

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

faceit-node-api

Lightweight node.js module for easier use of the Faceit Data API.

latest
Source
npmnpm
Version
2.1.0
Version published
Maintainers
0
Created
Source

faceit-node-api

Lightweight node.js module for easier use of the Faceit Data API.

On the 27th of September, 2022, this module covers all the Data APIs provided by Faceit. Please check the latest documentation from the Official Faceit Developers web page.

Example of usage:

import { Faceit, Players, Tournaments } from 'faceit-node-api';

Faceit.setApiKey('your_api_key');

const players = new Players();
const tournaments = new Tournaments();

const playerDetails = await players.getPlayerDetailsByNickname('your_nickname');
// do something with received players data from the Faceit API

const tournamentMatches = await tournaments.getMatchesOfATournament(
  'your_tournament_id',
  { limit: 20, offset: 10 }
);
// do something with received tournaments data from the Faceit API

Note that limit and offset aren't required attributes, and by default, they are equal to 20 and 0, respectively.

Keywords

faceit

FAQs

Package last updated on 31 Jul 2025

Did you know?

Socket

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.

Install

Related posts