
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@santyboy007/clash-royale-api
Advanced tools
An asynchronous wrapper for the official Clash Royale API with support proxy
Official API Link https://developer.clashroyale.com
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.
Install the package:
yarn add @santyboy007/clash-royale-apiOR
npm i --save @santyboy007/clash-royale-apiUsage:
// 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
})
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 racePlayers
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.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
}
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.
FAQs
Unknown package
We found that @santyboy007/clash-royale-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.