Clash Royale Official API Wrapper
Clash Royale Official API Wrapper
An asynchronous wrapper for the official Clash Royale API.
Official API Link https://developer.clashroyale.com
Important note
This wrapper will only work from a nodejs server app. The official clash royale api is, unfortunately, blocking requests done directly from the browser.
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 @varandas/clash-royale-api
OR
npm i --save @varandas/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.
- Returns a list of all the available clans. getClanByTag(tag: string) - Returns details about a specific clan.
- Returns details about a specific clan. getClanMembers(tag: string) - Returns a list of clan members.
- Returns a list of clan members. getClanWarlog(tag: string) - Returns the war log for a clan
- Returns the war log for a clan getClanCurrentWar(tag: string) - Retrieve information about clan's current clan war
- 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.
- 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.
- 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.
- Search all tournaments by name. getTournamentByTag(tag: string) - Get information about a single tournament by a tournament tag.
- 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.
- List all available locations. getLocationById(id: string, params: ILocationFullRequestParams) - Get information about specific location.
- Get information about specific location. getClanRankinsForLocation(id: string, params: ILocationFullRequestParams) - Get clan rankings for a specific location.
- Get clan rankings for a specific location. getPlayerRankingsForLocation(id: string, params: ILocationFullRequestParams) - Get player rankings for a specific location.
- 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 /** * Ret!
urn 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
This content is not affiliated with, endorsed, sponsored, or specifically approved by Supercell and Supercell is not responsible for it. For more information see Supercells Fan Content Policy.
An asynchronous wrapper for the official Clash Royale API.
Official API Link https://developer.clashroyale.com
Important note
This wrapper will only work from a nodejs server app. The official clash royale api is, unfortunately, blocking requests done directly from the browser.
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 @varandas/clash-royale-api
OR
npm i --save @varandas/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.
- Returns a list of all the available clans. getClanByTag(tag: string) - Returns details about a specific clan.
- Returns details about a specific clan. getClanMembers(tag: string) - Returns a list of clan members.
- Returns a list of clan members. getClanWarlog(tag: string) - Returns the war log for a clan
- Returns the war log for a clan getClanCurrentWar(tag: string) - Retrieve information about clan's current clan war
- 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.
- 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.
- 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.
- Search all tournaments by name. getTournamentByTag(tag: string) - Get information about a single tournament by a tournament tag.
- 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.
- List all available locations. getLocationById(id: string, params: ILocationFullRequestParams) - Get information about specific location.
- Get information about specific location. getClanRankinsForLocation(id: string, params: ILocationFullRequestParams) - Get clan rankings for a specific location.
- Get clan rankings for a specific location. getPlayerRankingsForLocation(id: string, params: ILocationFullRequestParams) - Get player rankings for a specific location.
- 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 /** * Ret!
urn 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
This content is not affiliated with, endorsed, sponsored, or specifically approved by Supercell and Supercell is not responsible for it. For more information see Supercells Fan Content Policy.
Comentarios
Publicar un comentario