Get PLYR L1 Token List
Get list of available PLYR L1 tokens and their details including prices and metadata
Endpoint: /tokenlist
Method: GET
{
name: string,
timestamp: string,
version: {
major: number,
minor: number,
patch: number
},
tokens: Array<{
chainId: number,
address: string,
name: string,
symbol: string,
decimals: number,
logoURI: string,
apiId: string,
cmcURL: string,
cmcId: string,
cgURL: string,
cgId: string,
website: string,
category: string,
shortDescription: string,
nativeChainId: number,
nativeChainName: string,
nativeChainLogoURI: string,
nativeContractAddress: string,
isGameStake: boolean,
price: number,
updatedAt: string,
nextUpdatedAt: string
}>
}
Response Fields Description
name
: Name of the token listtimestamp
: Last update timestampversion
: Semantic version of the token listtokens
: Array of token objects with the following properties:chainId
: ID of the blockchain networkaddress
: Token contract addressname
: Token namesymbol
: Token symboldecimals
: Number of decimal placeslogoURI
: URL to token's logo imageapiId
: Unique identifier for the token in the APIcmcURL
: CoinMarketCap URLcmcId
: CoinMarketCap IDcgURL
: CoinGecko URLcgId
: CoinGecko IDwebsite
: Official token websitecategory
: Token categoryshortDescription
: Brief description of the tokennativeChainId
: ID of the token's native blockchainnativeChainName
: Name of the token's native blockchainnativeChainLogoURI
: URL to native chain's logonativeContractAddress
: Token's contract address on its native chainisGameStake
: Whether the token can be used for game stakingprice
: Current token price in USDupdatedAt
: Last price update timestampnextUpdatedAt
: Next scheduled price update timestamp
Last updated