PLYR GAMING UNIVERSE
  • API Endpoint
  • API Quickstart
  • API REFERENCE
    • Users
      • Authentication
        • PLYR[ID]
          • Login
          • Login and Approve
          • Logout
        • InstantPlayPass
          • RegisterIPP
          • RevealClaimingCode
          • VerifyClaimingCode
        • PLYR[CONNECT]
      • Check Session JWT
      • Get Basic User Info
      • Get Avatar
    • Game room
      • Create Game Room
      • Join Game Room
      • Pay Game Room
      • Earn Game Room
      • Leave Game Room
      • End Game Room
      • Helpers
        • Is Joined Game Room
        • Join and Pay
        • Earn and Leave
        • Create, Join and Pay
        • Earn, Leave and End
    • Assets
      • Tokens ( ERC-20 )
        • Get PLYR L1 Token List
        • Get User Token Balance
        • Get User Token Allowance
        • Approve User Token Spending
        • Revoke User Token Allowance
        • In-Game Chips
          • Create Chip
          • Mint Chip
          • Burn Chip
          • Transfer Chip
          • Get Chip Balance
          • Get Chip Info
      • NFTs ( ERC-721 )
        • Create NFT
        • Mint NFT
        • Transfer NFT
        • Burn NFT
        • Get NFT Balance
        • List NFTs
        • Check NFT Holding
        • Get NFT Credit
        • Get NFT Info
        • Get Zoo Genes
        • Official PLYR NFTs
          • Get User Zoo Genes
          • Get User Zoo Boosters
          • Get User Zoo Elixirs
      • Badge
        • Create Badge
        • Mint Badge
        • Remove Badge
        • Burn Badge
        • List Badges
        • Get Badge Info
    • Misc
      • Get Session JWT Public Key
      • Verify JWT Locally
      • Activity Logs
      • Get Task Message Status
Powered by GitBook
On this page
  1. API REFERENCE
  2. Assets
  3. Tokens ( ERC-20 )

Get PLYR L1 Token List

Get list of available PLYR L1 tokens and their details including prices and metadata

Retrieve the list of available PLYR L1 tokens with detailed information including prices, metadata, and chain information.

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
    }>
 }
{
    error: string;
}

Response Fields Description

  • name: Name of the token list

  • timestamp: Last update timestamp

  • version: Semantic version of the token list

  • tokens: Array of token objects with the following properties:

    • chainId: ID of the blockchain network

    • address: Token contract address

    • name: Token name

    • symbol: Token symbol

    • decimals: Number of decimal places

    • logoURI: URL to token's logo image

    • apiId: Unique identifier for the token in the API

    • cmcURL: CoinMarketCap URL

    • cmcId: CoinMarketCap ID

    • cgURL: CoinGecko URL

    • cgId: CoinGecko ID

    • website: Official token website

    • category: Token category

    • shortDescription: Brief description of the token

    • nativeChainId: ID of the token's native blockchain

    • nativeChainName: Name of the token's native blockchain

    • nativeChainLogoURI: URL to native chain's logo

    • nativeContractAddress: Token's contract address on its native chain

    • isGameStake: Whether the token can be used for game staking

    • price: Current token price in USD

    • updatedAt: Last price update timestamp

    • nextUpdatedAt: Next scheduled price update timestamp

PreviousTokens ( ERC-20 )NextGet User Token Balance

Last updated 4 months ago