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

scidapi-client

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scidapi-client

Supercell ID API client

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

scidapi-client

Supercell ID (SCID) API client for Node.js and TypeScript.
Provides easy access to Supercell ID profiles, friends, and friend requests with RFP (Request Forgery Protection) support.

Installation

npm install scidapi-client

USAGE

import SCIDClient from 'scidapi-client';

const SCID_TOKEN = 'your_scid_token';
const RFP_KEY_HEX = 'rfp_key';

const client = new SCIDClient(SCID_TOKEN, RFP_KEY_HEX);

(async () => {
    try {
        const profile = await client.getProfile('brawlstars', 'handle');
        console.log(profile);

        const profileList = await client.getProfileList(['supercell', 'brawlstars'], 'handles');
        console.log(profileList);
    } catch (err) {
        console.error(err);
    }
})();

Keywords

supercell id

FAQs

Package last updated on 27 Aug 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