@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
Maintainers
Readme
Clash Royale Official API Wrapper
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 clangetClanCurrentWar(tag: string)
- Retrieve information about clan's current clan wargetClanCurrentRiverRace(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
}
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.