npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@santyboy007/clash-royale-api

v1.1.9

Published

<p align="center"> <img src="https://raw.githubusercontent.com/AndreVarandas/clash-royale-api/master/art/logo.png" width="400" height="260" alt="Clash Royale Official API Wrapper logo"> </p>

Downloads

6

Readme

Clash Royale Official API Wrapper

npm (scoped) npm

Build Status Codecov Coverage semantic-release Known Vulnerabilities GitHub license

An asynchronous wrapper for the official Clash Royale API with support proxy

Official API Link https://developer.clashroyale.com

Getting started

In order to use the official api, you will need a token. This token can be obtained at the Official API website https://developer.clashroyale.com.

Once you register and get the token, you are ready to start.

Usage

Install the package:

  • yarn add @santyboy007/clash-royale-api

OR

  • npm i --save @santyboy007/clash-royale-api

Usage:


// Import the package
const { ClashRoyaleAPI } = require('@varandas/clash-royale-api')

// Initialize the api
const api = new ClashRoyaleAPI('the token you got from the api')

// Use the api to get cards
api.getCards()
    .then(cards => {
        // Do something with the cards
    })
    .catch(err => {
        // handle errors
    })

Methods

All api calls are asynchronous and used in the same way as above in the getCards example.

Clans

  • getClans(params: IClanRequestParams) - Returns a list of all the available clans.
  • getClanByTag(tag: string) - Returns details about a specific clan.
  • getClanMembers(tag: string) - Returns a list of clan members.
  • getClanWarlog(tag: string) - Returns the war log for a clan
  • getClanCurrentWar(tag: string) - Retrieve information about clan's current clan war
  • getClanCurrentRiverRace(tag: string) - Retrieve information about clan's current river race

Players

  • getPlayerByTag(tag: string) - Get information about a single player by player tag.
  • getPlayerUpcomingChests(tag: string) - Get list of reward chests that the player will receive next in the game.
  • getPlayerBattleLog(tag: string) - Get list of recent battle results for a player.

Tournaments

  • getTournaments(params: ITournamentRequestParams) - Search all tournaments by name.
  • getTournamentByTag(tag: string) - Get information about a single tournament by a tournament tag.
  • getGlobalTournaments - List all available global tournaments.

Cards

  • getCards - Get list of all available cards.

Locations

  • getLocations(params: ILocationRequestParams) - List all available locations.
  • getLocationById(id: string, params: ILocationFullRequestParams) - Get information about specific location.
  • getClanRankinsForLocation(id: string, params: ILocationFullRequestParams) - Get clan rankings for a specific location.
  • getPlayerRankingsForLocation(id: string, params: ILocationFullRequestParams) - Get player rankings for a specific location.
  • getClanWarRankingsForLocation(id: string, params: ILocationFullRequestParams) - Get clan rankings for a specific location.

Configuration Objects

IClanRequestParams


/**
* Note:
* Only the name property is required.
*/
export interface IClanRequestParams {
    /**
     * Search clans by name.
     * If name is used as part of search query, it needs to be at least three
     * characters long. Name search parameter is interpreted as wild card
     * search, so it may appear anywhere in the clan name.
     */
    name: string
    /**
     * Filter by clan location identifier. For list of available locations,
     * refer to getLocations operation.
     */
    locationId?: number
    /**
     * Filter by minimum amount of clan members.
     */
    minMembers?: number
    /**
     * Filter by maximum amount of clan members.
     */
    maxMembers?: number
    /**
     * Filter by minimum amount of clan score.
     */
    minScore?: number
    /**
     * Limit the number of items returned in the response.
     */
    limit?: number
    /**
     * Return only items that occur after this marker.
     * After marker can be found from the response, inside the 'paging' property.
     * Note that only after or before can be specified for a request, not both.
     */
    after?: number
    /**
     * Return only items that occur before this marker.
     * Before marker can be found from the response, inside the 'paging' property.
     * Note that only after or before can be specified for a request, not both.
     */
    before?: number
}

ITournamentRequestParams


/**
* Note:
* Only the name property is required.
*/
export interface ITournamentRequestParams {
    /**
     * Search tournaments by name.
     */
    name: string
    /**
     * Limit the number of items returned in the response.
     */
    limit?: number
    /**
     * Return only items that occur after this marker.
     * After marker can be found from the response, inside the 'paging' property.
     * Note that only after or before can be specified for a request, not both.
     */
    after?: number
    /**
     * Return only items that occur before this marker.
     * Before marker can be found from the response, inside the 'paging' property.
     * Note that only after or before can be specified for a request, not both.
     */
    before?: number
}

ILocationRequestParams


export interface ILocationRequestParams {
    /**
     * Limit the number of items returned in the response.
     */
    limit?: number
    /**
     * Return only items that occur after this marker.
     * After marker can be found from the response,
     * inside the 'paging' property. Note that only
     * after or before can be specified for a request, not both.
     */
    after?: number
    /**
     * Return only items that occur before this marker.
     * Before marker can be found from the response,
     * inside the 'paging' property. Note that only
     * after or before can be specified for a request, not both.
     */
    before?: number
}

LICENSE - MIT


Credits

Logo by Caneco. Package by Varandas


This content is not affiliated with, endorsed, sponsored, or specifically approved by Supercell and Supercell is not responsible for it. For more information see Supercell’s Fan Content Policy.