Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
QuickStart Guide for Seamless Integration
Every game uses a Game Address, which acts as a routing mechanism for in-game transactions. This address will be your game's wallet that receives the funds collected (your profit) from sales or a percentage of transactions or any other mechanics you have chosen.
It's important to note that funds can be withdrawn with a 7-day delay. This delay allows us to verify that a legitimate pattern has been used in the game and that no fraudulent activity has been generated.
How to create a ZooGamesID with METAMASK (recommended)
Once your game fully utilizes the Testnet functions of the protocol, we will provide you with a Mainnet API Key for the final release of your game.
The use of the protocol is free; however, transaction fees are automatically deducted to generate additional rewards for players (GameStake).
To interact with our API, we recommend installing our official SDK, which provides the best integration with our system. This SDK simplifies the process of connecting to our API and provides pre-built functions and tools to facilitate development.
Please follow the installation instructions provided in the documentation specific to your chosen SDK. This will ensure that you have the necessary libraries and dependencies set up correctly in your development environment.
By using our official SDK, you can streamline the integration process and take advantage of the features and functionalities we offer in a more efficient and effective manner.
We have developed a straightforward testnet faucet that allows you to request testnet vZOO tokens.
To proceed, please visit and create a ZooGamesID that will control this address.
In order to communicate with the protocol, you need to obtain a free API key from our team. To do this, please reach out to a ZooGames team member or fill out this
The Definitive Guide to Harnessing the ZooGames API
The ZooGames API enables communication between your game and the blockchain. It allows you to create in-game transactions using vZOO tokens, retrieve NFT data regardless of the original chain, implement a simple and secure authentication system, and mint in-game chips or NFTs.
The protocol is constantly evolving, and we are working on several features such as cross-chain messaging (interacting with a target chain through the ZooGames API) and the integration of your gaming token into our ecosystem for a simple and free system.
By seamlessly integrating with all EVM networks, ZooGames offers users the freedom to connect, play, and earn across a range of networks such as Ethereum, Binance Smart Chain, Avalanche, Wanchain, and more.
Once connected, the ZooGames protocol automatically generates a unique mirror address (Gaming Wallet) exclusively for gaming purposes. This mirror address, created on the Wanchain network, acts as a replica of the user's primary address (and any linked secondary addresses) and facilitates seamless participation within the gaming environment.
ZooGames empowers players with a versatile and interoperable gaming experience, where blockchain technology enhances security, transparency, and ownership of in-game assets.
With ZooGames, players have the flexibility to choose their preferred network and connect using their primary address or using an innovative social login, which serves as their gateway to the platform. Additionally, users can link multiple secondary addresses to consolidate and manage their owned NFTs from any EVM chain. The platform allows the creation of multiple secondary addresses to cater to individual needs.
With the addition of the feature, players can now dive straight into the action without the initial setup of a ZooGamesID.
To get started, please install the ZooGames SDK and familiarize yourself with the functionality of our Game Settlement API available .
Understanding Game Settlement: Optimizing In-Game Transactions
Before implementing the GameSettle API, let's start with a basic concept of game settlement. Imagine you want to develop a simple card game where four players participate.
Each player needs to spend 100 vZOO to join the game, resulting in a total of 400 vZOO in the game pool. At the end of the game, the winner receives 200 vZOO, the second-place player receives 150 vZOO, the third-place player receives 50 vZOO, and the fourth-place player receives nothing. You can use the game settlement API to broadcast the vZOO rewards each player has obtained.
In the game lobby, Player #1 joins. The game server calls the "Game/Ready" API to check Player #1's vZOO balance. If the balance is sufficient, the player is verified and remains in the lobby. If not, the player is kicked out.
Player #2 joins but doesn't have enough vZOO to play. The game server removes this player from the lobby.
Players #3, #4, and #5 join with sufficient vZOO to play.
With four players ready, the game server calls the "Game/Start" API to initiate the game. This API transfers their 100 vZOO to the locked vZOO pool, totaling 400 vZOO.
After gameplay, the final vZOO amounts for each player are as follows:
Player #3 (Winner): 200 vZOO
Player #4 (Second place): 150 vZOO
Player #1 (Third place): 50 vZOO
Player #5: 0 vZOO
The game server needs to call the "Game/Over" API with the round ID and provide the player reward information in the order they entered (from "Game/Start"), such as [50, 200, 150, 0].
If you want to receive a fee from each game, for example, 5%, you can deduct this percentage from what each player receives.
After the gameplay, the final vZOO amounts for each player are as follows:
Player #3 (Winner): 200 vZOO
Player #4 (Second place): 150 vZOO
Player #1 (Third place): 50 vZOO
Player #5: 0 vZOO
To calculate the developer fee, deduct 5% from each player's amount:
Player #1: 49 vZOO (2.45 vZOO as dev fee)
Player #3: 196 vZOO (9.8 vZOO as dev fee)
Player #4: 147 vZOO (7.35 vZOO as dev fee)
Player #5: 0 vZOO (0 vZOO as dev fee)
The total developer fee is 19.6 vZOO, and the final broadcast amounts become [46.55, 186.2, 139.65, 0]. The game server simply calls the "Game/Over" API with the new final broadcast [46.55, 186.2, 139.65, 0] and provides the gameResultAmount as 19.6.
If you want to offer additional vZOO as promotional rewards to encourage users to play your game, you can top-up the locked vZOO pool. Assuming you want to support an extra 100 vZOO for each game, with four players ready to start the game, the game server can call the "Game/Start" API with a gameLockAmount of 100 vZOO. The total locked vZOO in the pool will then be 500 vZOO. After gameplay, the final vZOO amounts for each player are as follows:
Player #3 (Winner): 200 vZOO + 50 vZOO (extra)
Player #4 (Second place): 150 vZOO + 40 vZOO (extra)
Player #1 (Third place): 50 vZOO + 10 vZOO (extra)
Player #5: 0 vZOO
The game server needs to call the "Game/Over" API with the round ID and provide the player reward information in the order they entered (from "Game/Start"), such as [60, 250, 190, 0]. Each reward amount should be reduced by the platform fee (assumed to be 2%). Therefore, the final broadcast amounts will be [58.8, 245, 186.2, 0].
You can also adjust the developer fee in this section. However, ensure that the total paid amount plus the platform fee is less than the total locked vZOO in the pool. From the game server side, you have the flexibility to mix and match these concepts as desired.
TESTNET/MAINNET
For your projects, we provide two different API endpoints based on the network you intend to utilize:
This endpoint is specifically designed for integration with the mainnet network. It enables you to interact with the ZooGames API in a production environment, where real transactions and operations occur. You should use the Mainnet API Endpoint when your project is ready for deployment and needs to interact with the live blockchain network.
This endpoint is intended for use on the testnet network. The testnet environment allows you to experiment and test your integration with the ZooGames API without utilizing real funds or affecting the live blockchain network. It provides a sandbox-like environment for developers to ensure the functionality and reliability of their applications before transitioning to the mainnet.
Please ensure that you select the appropriate API endpoint based on your project's requirements and the desired network environment.
Nomenclature
A ZooGamesID is a unique identifier that represents a player's identity on Zoo.Games. When a player starts a ZooGames compatible game, they enter their ZooGamesID to link their profile to the game.
Each ZooGamesID utilizes 2FA (Two-Factor Authentication) for approving transactions within the game. The 2FA authentication process ensures an additional layer of security and requires the player to provide a second form of verification, typically through a mobile app or email, before authorizing any in-game transactions. This helps prevent unauthorized access and ensures that players have control over the transactions associated with their ZooGamesID.
A Mirror address, also known as a Gaming Wallet to players, is an address created by the protocol on Zoo.Games. It serves as a connection point between the API, games, and the platform. All in-game transactions are associated with the mirror address.
A Primary Address is the main address chosen by the player to link to their ZooGamesID. This primary address is used for all interactions with the ZooGames protocol.
A Secondary Address is an optional feature that allows players to connect additional addresses to their profile. It enables them to link assets from other wallets to their ZooGamesID.
You can request Testnet vZOO
Web2/Web3 Authentication System
On ZooGames, players have two primary methods to log in and access the platform:
Both methods are designed to provide flexibility and ease of access, catering to both seasoned gamers and newcomers alike.
: This is the traditional method where users create a unique identifier known as the ZooGamesID. It is a unique identifier that represents a player's identity on Zoo.Games. When a player starts a ZooGames compatible game, they enter their ZooGamesID to link their profile to the game. Once set up, users can log in using their ZooGamesID + 2FA to access all platform features.
: For those who want to dive right into the action, the Instant PlayPass allows users to start playing games without initially setting up a ZooGamesID. Players simply input a username in-game (but not mandatory), and ZooGames takes care of the rest, automatically creating a primary and a mirror gaming address for them. This method is perfect for newcomers who want to explore the platform without any initial commitments. If they decide to take full ownership of their gaming progress and rewards later, they can easily link these temporary addresses to a newly created ZooGamesID.
Allows users to quickly and seamlessly start playing games on ZooGames
Instant PlayPass is a streamlined onboarding feature for ZooGames. With just a username, players can instantly dive into games without initially setting up a ZooGamesID. Behind the scenes, two addresses (a primary and a mirror gaming address) are auto-generated for the player.
This lets newcomers freely explore games, earn tokens, and collect NFTs.
Automated Address Generation Upon entering a game, users will only be required (or not — depending on the game developer’s chosen settings) to input a username. In the backend, the ZooGamesAPI will generate two distinct addresses for the user: a primary address and a corresponding gaming (mirror) address.
Gaming Experience & Asset Accumulation Users can immediately immerse themselves in the gaming environment, earning tokens, in-game chips, and NFTs, all of which are compatible across multiple blockchains, ensuring interoperability and flexibility.
Private Key Retrieval & Integration After the creation of their ZooGamesID, users will have the possibility to securely download the private key associated with their temporary primary address. This key can then be integrated as a secondary address within their newly minted ZooGames account, ensuring continuity and security of assets.
Grant your players instant access to your game using Instant PlayPass.
POST
API_END_POINT_URL/API_KEY/register/temp_user
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
Api Key
gameAddress*
Address
Address of Game/Project registered Primary Address
username*
String
Choose any temporary username you like. We suggest using a prefix like 'TMP_' followed by numbers, such as 'TMP_123456789'. You can also consider using the current timestamp
When players decide to transition to a web3 wallet, they can claim their wallet credentials using a redeem code.
POST
API_END_POINT_URL/API_KEY/reveal/mirrorRedeemCode
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
Api Key
jwt*
JWT String
a JWT string generated from the PlayPass account.
All about user's info
The User API serves the purpose of retrieving essential information about a user in the ZooGames API. It provides details such as the user's ZooGamesID, EVM addresses (primary, secondaries and mirror), their respective balances, the chain ID, the number of successful 2FA verifications, the creation time, and an optional avatar. This information can be used for user identification, account management, displaying user profiles, and tracking user activities within the gaming platform
GET
API_END_POINT_URL/API_KEY/userInfo/username/[ZOO_GAMES_ID]
GET
API_END_POINT_URL/API_KEY/userInfo/primary/[PRIMARY_ADDRESS]
GET
API_END_POINT_URL/API_KEY/secondary/[PRIMARY_ADDRESS or ZOO_GAMES_ID]
GET
API_END_POINT_URL/api/user/profile_pic/[ZOO_GAMES_ID]
If there have some image set. It will return base64 encoded image. No profile image or not found a user by ZOO_GAMES_ID will return an "Empty".
Buy or sell in-game items with vZOO
This solution allows users to utilize their vZOO tokens to buy or sell in-game items and assets. The game services and game address play a crucial role in facilitating these transactions and providing control over the process.
This solution can be applied in various scenarios:
Purchasing In-game NFTs (ERC721) with vZOO:
Users can spend a specific amount of vZOO.
A new ERC721 token is minted and transferred to the user.
Purchasing In-game Tokens (ERC20) with vZOO:
Users can spend a certain amount of vZOO.
A new ERC20 token is minted and transferred to the user.
Acting as a middleman for user-to-user trades:
Users can transfer vZOO from User A.
The gameTrade API is called to facilitate the trade.
ERC20 tokens are transferred or burned, and ERC721 tokens are minted or transferred between User B and User A.
The gameTrade API is called again to send the locked amount from User A to User B.
In summary, this solution enables the seamless exchange of vZOO, ERC721 tokens, and ERC20 tokens between users, with 2FA verification ensuring secure and authenticated transactions.
POST
API_END_POINT_URL/API_KEY/game/trade
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
June 2023 Fee rules
Claiming Mechanism If a user decides to formalize their engagement on the platform, they will be provided with a unique Claiming URL on . This URL directs them to a secure portal where they can establish a permanent ZooGamesID which will be linked to the account they have been utilizing.
fees are incurred for each transaction on the platform. These fees are automatically deducted to generate additional rewards for players. Check the current fee price .
ZOO_GAMES_ID*
String
ZooGamesId
API_KEY*
String
Api Key
without_avatar
Boolean
true: To set "avatar" property as "null" to reduce the returning data
PRIMARY_ADDRESS*
String
User Primary Address
API_KEY*
String
Api Key
without_avatar
Boolean
true: To set "avatar" property as "null" to reduce the returning data
PRIMARY_ADDRESS or ZOO_GAMES_ID*
Address / String
ZooGamesId
API_KEY*
String
Api Key
ZOO_GAMES_ID*
String
ZooGamesId
API_KEY*
String
API_KEY
username*
String
ZooGamesID of sender or receiver
userPrimary*
Address
Primary Address that is linked to ZooGamesID above
token
String
2FA token to approve spending - If amountUserPay > 0 this one is required
gameAddress*
Address
Address of Game/Project registered Primary Address
amountUserPay*
number
Amount of spending from defined zoogamedID to gameAddress
Can be 0 if you want to switch to mode amountUserGot
amountUserGot*
number
Amount of spending of gameAddress to defined zoogamesID
Can be 0 if you want to switch to mode amountUserPay
itemId
number
it's used as reference and will contain the result for cross-checking purposes
Testnet vZOO faucet for your ZooGamesID
By using the faucet, you can acquire the necessary testnet vZOO tokens to simulate transactions and test various functionalities within the testnet environment. Please note that the amount of testnet vZOO tokens you can request is limited to 1000.
Two-Factor Authentication
The player provides their ZooGamesID and 2FA token, and if the credentials are valid, the server grants access for the user to log in.
A user's session in the application has an expiration time of 120 minutes. After this period, the session will expire, and the user will need to log in again.
If the user wants to extend the session and prevent it from expiring, they can use the Keep-alive API. By making a request to the Keep-alive API within the session's duration, the session will be refreshed, and the expiration time will be extended.
To gain insights into how authentication works on Zoo.Games, you can explore our open-source Telegram AUTH web app. It will provide you with a clear understanding of the authentication process implemented on the Zoo.Games platform.
To authenticate and handle login and logout functionality, you need to follow these steps:
by installing the SDK and utilizing the signData() function, you can generate the SignedSignatureFromPayload (HMAC signature) for authentication purposes in the ZooGames API requests
POST
API_END_POINT_URL/API_KEY/session/login
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
POST
API_END_POINT_URL/API_KEY/session/logout
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
The Keep-Alive feature allows users to extend the expiration time of their session. By making a request to the Keep-Alive API endpoint within the session duration, users can refresh the session and prevent it from expiring.
POST
API_END_POINT_URL/API_KEY/session/keepAlive
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
Keep-Alive helps enhance user experience by reducing the need for repeated logins and provides convenience during extended usage periods.
Approve API enables the creation of in-game vZOO transactions. However, to ensure security and validate the transaction, players are required to re-enter their 2FA (Two-Factor Authentication) credentials.
If the 2FA validation fails or is not provided by the player, the transaction will not be approved and will result in a failure.
POST
API_END_POINT_URL/API_KEY/session/approve
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
The Status API returns the current JWT Payload and verifies whether their JWT is eligible for use in the Settlement API.
POST
API_END_POINT_URL/API_KEY/session/status
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
Query String
When users interact with the Login and Approve API, they are required to provide their login credentials, ZooGamesID and 2FA, to authenticate themselves and gain access to their account. Upon successful authentication, users can proceed to approve in-game transactions.
If the 2FA validation fails or is not provided by the player, the transaction will not be approved and will result in a failure.
POST
API_END_POINT_URL/API_KEY/session/loginAndApprove
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API Key
authorization*
String
eg: Bearer SignedSignatureFromPayload
username*
String
ZooGamesId
token*
String
6 digits of 2FA token
API_KEY*
String
API Key
authorization*
String
Bearer SignedSignatureFromPayload
jwt*
String
JWT token you got from Login API
API_KEY*
String
API Key
authorization*
String
eg: Bearer SignedSignatureFromPayload
username*
String
ZooGameId
jwt*
String
JWT token you get from Login API
API_KEY*
String
API Key
authorization*
String
Bearer SignedSignatureFromPayload
username*
String
ZooGamesId
jwt*
String
JWT token you got from Login API
approval*
Decimal
vZOO amount for approval (e.g. 0.1)
playSeconds*
Integer
approval expiry in (e.g. 3600)
gameAddress
Address
Address of Game/Project registered Primary Address
token*
String
6 digits of 2FA token
API_KEY*
String
API Key
authorization*
String
Bearer SignedSignatureFromPayload
jwt*
String
JWT token you got from Login API
without_avatar
Boolean
true: To set "avatar" property as "null" to reduce the returning data
API_KEY*
String
API KEY
authorization*
String
Bearer SignedSignatureFromPayload
username*
String
ZooGamesId
token*
String
6 digits of 2FA token
approval*
Decimal
vZOO amount for approval (e.g. 0.1)
playSeconds*
Integer
approval expiry in (e.g. 3600)
gameAddress*
Address
Address of Game/Project registered Primary Address
Call randomness to defeat cheaters
The RNG service in this gaming API provides randomness for various aspects of the game, ensuring fairness, unpredictability, and security. It adds excitement, prevents bias, enhances game balance, and deters cheating.
GET
API_END_POINT_URL/API_KEY/random/RNG_LENGTH/RNG_COUNT
API_KEY*
String
API KEY
RNG_LENGTH*
Integer
Length of Hex number
RNG_COUNT*
Interger
Number of returned results
GET
API_END_POINT_URL/API_KEY/random/RNG_LENGTH/RNG_COUNT/SEED_STRING
You can utilize a future Block Hash as a seed to obtain an unpredictable but verifiable random number. The result will always be consistent with the provided seed string.
API_KEY*
String
API KEY
RNG_LENGTH*
Integer
Length of Hex number
RNG_COUNT*
Interger
Number of returned results
SEED_STRING*
String
Any String / Block Hash / Reference String from your side
Gameplay Mechanics: Many games rely on random elements, such as random encounters, loot drops, critical hits, or chance-based events. The RNG service provides a source of randomness to determine the outcomes of these events, making the gameplay more exciting and unpredictable.
Fairness in Competitions: In multiplayer or competitive games, the RNG service can be used to ensure fairness among players. For example, when determining matchmaking, allocating resources, or deciding turn orders, randomization helps prevent bias or favoritism and creates a level playing field for all participants.
Security and Encryption: Randomness is crucial in cryptographic operations and security protocols. The RNG service can generate random cryptographic keys, initialization vectors, or nonce values, which are essential for encryption, secure communications, and preventing unauthorized access.
Game Balance and Variability: Randomness adds an element of variability to the game, preventing repetitive patterns and creating unique experiences. By incorporating random elements, the game becomes less predictable, enhancing replayability and player engagement.
Anti-Cheating Measures: RNG can be used to deter cheating or exploit attempts within the game. For instance, randomizing critical game values or outcomes makes it harder for players to manipulate or predict results through unauthorized means.
By utilizing an RNG service within the ZooGames API, developers can ensure that the game's outcome is determined in a fair, unbiased, and unpredictable manner. It enhances the gaming experience, maintains game balance, strengthens security measures, and fosters a more enjoyable and competitive environment for the players.
A stable oracle price service
In the context of this gaming API, an Oracle price of the vZOO token serves an important purpose. The vZOO token is the native token used within the game ecosystem, and its value can fluctuate in the market.
The Oracle price refers to a periodically updated price of the vZOO token, which is obtained from an external data source such as Coingecko or CMC. This price information is then utilized within the gaming API for various purposes, such as:
Game Settlement: When settling game transactions involving the vZOO token, the Oracle price is used to calculate the value of rewards, prizes, or in-game assets in terms of the vZOO token. This ensures fair and accurate distribution of rewards based on the current market value of the token.
Pricing Mechanics: The Oracle price can be utilized to determine the pricing of in-game items, upgrades, or services that are purchased using the vZOO token. By considering the current market price, the game can maintain a balanced economy and adjust the pricing accordingly.
Exchange Rates: If there are interactions or transactions between different tokens or currencies within the game ecosystem, the Oracle price of the vZOO token can be used to establish exchange rates or conversion ratios. This enables seamless conversions and consistent valuation across different token types.
By integrating an Oracle price of the vZOO token into the gaming API, developers can ensure that the in-game economy accurately reflects the real-world value of the token. It enhances the transparency, fairness, and consistency of game mechanics related to the vZOO token, providing a more engaging and reliable gaming experience for the players.
GET
API_END_POINT_URL/api/price/ZOO
We recommend using the Mainnet API to fetch the current price.
Easily access NFT data from any EVM chains
ZooGames provides the opportunity to integrate any NFT collection from most EVM chains.
Currently, we offer a manual process for adding your NFT collection to our platform, and we are actively developing a fully autonomous solution.
If you're eager to get started, please contact us and provide the following information: the EVM chain, contract address, and token name (alias name) of your NFT collection.
Once your collection is added to our system, we will provide you with an API endpoint to access and utilize the collection within ZooGames.
Add new Game Settlement API
Create an Info of Hotlink to register with reveled redeem code.
Add direct get User's Profile Image
isTMP flag has been changed to isPlayPass
Add Temporary Accounts Features
Add isTmp and createdFromRedeemCode to userInfo api
Add Query string "without_avatar" to reduce the size of returning data
Users
ZooGames’ revolutionary system simplifies gaming authentication
The ZooGames WebApp code is also completely free and open-source, so developers can customize and integrate it into their games and apps without any extra cost or hassle.
In short, ZooGames’ revolutionary system simplifies gaming authentication and offers a secure and easy way to access your gaming data. So, why not give it a try and experience the future of web3 gaming authentication?
The Vercel service can be used to host your WebAPP.
The authentication flow involves the display of a login form on the WebApp. Upon successful connection to the right MongoDB and input of the user's Telegram ID, a JWT Token will be recorded as the following structure:
The user will also receive a direct message from the bot, containing their logged in Zoo.Games ID, Primary Address, and Mirror Address. If there are any errors, an alert will be displayed to prompt the user to fix it.
You can continue writing your BOT code to get TG user id, username and ZooGames JWT for further gameplay.
To call the Telegram Webapp, the sendMessage and sendPhoto APIs can be used with a reply markup of inline_keyboard. It is important to note that the Bot Menu should not be used to call the WebAPP, as it will not send a query of User Data to the WebAPP. The following environment variables structure can be used:
You can try accessing the ZooQuiz bot by going to and typing "/register" followed by clicking on "Login". This will bring up the Login WebAPP. You can then provide your ZooGamesID and 2FA token to log in and link your Telegram ID with your ZooGamesID.
MongoDB can be used to store session records for your game. You can sign up for a free account at to test your game.
For bot development using NodeJS stack, you can utilize "node-telegram-bot-api", which can be accessed at . ()
It is recommended to have some knowledge of Telegram BOT API, which can be found at , () as well as Telegram WebAPP at . ()
To obtain ZooGames API KEY and SECRET, you can request it through Telegram at (Zoo.Games Sub Topic).
3D animals with accessories, all in FBX file format
This pack is perfect for game developers looking to add unique, cartoon-style animal characters to their projects. It also includes a variety of accessories, such as hats and glasses, that can be used to customize the animals and make them even more unique.
This is a great opportunity for developers to save time and resources by using these pre-made assets, instead of having to create them from scratch. Get your hands on this pack today and take your game development to the next level!
Don’t forget to credit the ZooEcosystem team when using it!
Custom NFT Tokens generated in-game
In-Game NFTs are ERC721 tokens that offer transparency in minting and transactions. They enable games to create virtual assets without the pain of deploying a smart contract. Developers can easily create In-Game NFTs using ZooGames API and control them securely.
Virtual Assets: Earn or purchase In-Game NFTs for in-game items, upgrades, or unlocking levels.
In-Game Economy: engage in player-driven economies within the game.
Reward System: Distribute NFTs as rewards for achievements, competitions, or milestones.
Social Interaction: Gift or trade NFTs, foster community engagement.
Airdrops and Promotions: Airdrop NFTs to players, attract new users or introduce special events.
Limited Edition Collectibles: Create rare NFTs for trading and collecting.
To create an In-Game NFTs token using the ZooGames API, you can follow these steps:
Send a request to the API endpoint, providing the desired Token name and symbol in the request payload.
The API will process your request and generate a new In-Game NFTs token with the specified Token name and symbol.
Upon successful creation, you will receive a response containing relevant information about the newly created token, such as its contract address and other necessary details.
You can now incorporate this In-Game NFTs token into your game environment, allowing players to interact with and own unique virtual assets.
POST
API_END_POINT_URL/API_KEY/erc721/create
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
This function empowers game developers to generate new NFT tokens on-demand, granting them flexibility and control over the in-game economy. You have the ability to mint NFTs in batches using an array.
POST
API_END_POINT_URL/API_KEY/erc721/batchMint
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
This function enables game developers to remove existing NFT tokens from circulation, granting them control over the in-game economy and token supply. You can burn NFTs in batches using an array, effectively eliminating them from the system and ensuring their scarcity and value.
POST
API_END_POINT_URL/API_KEY/erc721/batchBurn
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
The Total Mint Count API retrieves the total number of operations in your collection. By making a request to this API, you can obtain the count of NFTs operations that have been minted for a specific collection, providing valuable information about the size and scale of your collection.
POST
API_END_POINT_URL/API_KEY/erc721/totalMintCount
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
The Get In-Game NFTs API allows you to retrieve In-Game NFTs based on either the user's ZooGamesID or their Primary Address. You can use this API to obtain multiple NFT collections associated with a user, providing access to their owned NFTs within the game ecosystem.
GET
API_END_POINT_URL/API_KEY/userInfo/nft/inGameNft/[ZooGamesID or Address]
Example:
You can choose to send In-Game NFTs to either the Mirror wallet or the Primary wallet of users. Sending NFTs to the Primary wallet allows users to trade them on our official NFT store, . Once your NFT collection is registered, you can add them to Openzoo and claim transaction royalties.
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
name*
String
Name of this ERC721 Token
symbol*
String
Token Symbol
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
tokenAddress*
Address
Address of Token you have created or target Token to be minted
tokenIds*
Array of Number
Array of IDs to be minted ex:
[1,2,3,4,5] and must not be duplicated or ['0x00a'] as a hex number (Starting with 0x)
to*
String
The recipient primary address (tradable) or Mirror address (not tradable)
tokenJsons*
Array of Json Objects
Array of Json objects to be minted
ex:
[ {token_id: 1, name: 'NFT 1', description:'',image:'<url>'}, {token_id: 1, name: 'NFT 2', description:'',image:'<url>'} ]
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
tokenAddress*
Address
Address of Token you have created or target Token to be burnt
tokenIds*
Array of Number
Array of IDs to be burnt ex:
[1,2,3]
API_KEY*
String
API_KEY
tokenAddress*
Address
Address of Token you have created or target Token to be checked
API_KEY*
String
API_KEY
ZooGamesID or Address*
String
If you use ZooGamesID it will get NFT list by linking user Addresses
If you use Address it will get NFT list by an address
collection_in*
Addresses
Contract address of NFTs
You can use comma (,) to get many collections you want.
first
Number
Limitation of the list. Default is 100
skip
Number
It's an Offset (Start from). Default is 0
Unleashing the Power of InGameChips in the Gaming Realm
In-Game Chips are ERC20 tokens, which means they offer minting and txs transparency that traditional web2 game currencies can't match. This new token helps games create virtual currencies without providing liquidity to an exchange market.
Developers can create In-Game Chips with ZooGames easy-to-use interface and control them with complete security using the ZooGames API. With In-Game Chips, players can earn chips by completing missions or buy chips in packs. They can even be airdropped to mirror addresses on ZooGames. In short, In-Game Chips are the future of gaming and a key element of the Web3 gaming experience.
Virtual Currency: In-Game Chips can be used as a virtual currency within the game ecosystem. Players can earn In-Game Chips by completing in-game tasks, missions, or achievements. These chips can then be used to purchase in-game items, upgrades, cosmetics, or unlock new levels.
In-Game Economy: Developers can design complex in-game economies using In-Game Chips. Players can trade or exchange chips with each other to acquire rare items, trade with other players, or participate in player-driven economies within the game.
Reward System: In-Game Chips can serve as a reward system for players who engage actively in the game. Developers can distribute chips to players as rewards for reaching milestones, winning competitions, or demonstrating exceptional skills. These rewards can incentivize players to continue playing and achieving in the game.
Social Interaction: In-Game Chips can facilitate social interaction among players. Players can gift or trade chips with their friends or engage in friendly competitions where chips are wagered. This fosters a sense of community and engagement within the game.
Airdrops and Promotions: In-Game Chips can be airdropped to players' mirror addresses as part of promotional campaigns or as a gesture of appreciation. These airdropped chips can be used to attract new players, retain existing ones, or introduce special events within the game.
Limited Edition Collectibles: Developers can create limited edition or rare InGameChips that serve as collectible items within the game. Players can trade or showcase these unique chips, creating a market for collectors and enthusiasts.
FURTHER POSSIBLE USE CASE Cross-Game Utility: In-Game Chips can have utility across multiple games within the ZooGames ecosystem. Players can accumulate chips from different games and use them interchangeably within any compatible game on the platform, enhancing the interconnectedness of the gaming experience.
To create an In-Game Chips token using the ZooGames API, you can follow these steps:
Send a request to the API endpoint, specifying the Token name and symbol in the request payload.
The API will process your request and generate a new In-Game Chips token with the provided Token name and symbol.
Once the token creation is successful, you will receive a response containing the necessary information about the newly created token, such as its contract address and other relevant details.
You can now use this In-Game Chips token within your game environment.
POST
API_END_POINT_URL/API_KEY/erc20/create
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
name*
String
Name of this ERC20 Token
symbol*
String
Token Symbol
This function allows game developers to generate new tokens on-demand, providing flexibility and control over the in-game economy.
POST
API_END_POINT_URL/API_KEY/erc20/mint
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
tokenAddress*
Address
Address of Token you have created or target Token to be minted
amount*
String / Number
Amount to Mint (Max. 18 Decimals) * Recommended to use String over Number
username*
String
The recipient ZooGamesID
This function allows game developers to remove existing tokens from circulation, providing control over the in-game economy and token supply.
POST
API_END_POINT_URL/API_KEY/erc20/burn
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
tokenAddress*
Address
Address of Token you have created or target Token to be burnt
amount*
String / Number
Amount to Burn (Max. 18 Decimals) * Recommended to use String over Number
username*
String
The target ZooGamesID
Capability to transfer In-Game Chips tokens from one user (User A) to another user (User B) using the "TRANSFER" function. This function allows for seamless peer-to-peer token transfers within the game ecosystem.
POST
API_END_POINT_URL/API_KEY/erc20/transfer
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
tokenAddress*
Address
Address of Token you have created or target Token to be transferred
amount*
String / Number
Amount to transfer (Max. 18 Decimals) * Recommended to use String over Number
fromUser*
String
The source ZooGamesID
toUser*
String
The target ZooGamesID
POST
API_END_POINT_URL/API_KEY/erc20/balance
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameAddress*
Address
Address of Game/Project registered Primary Address
tokenAddress*
Address
Address of Token you have created or target Token to be checked
username*
String
ZooGamesID to check
All About Game Settlement API
You can utilize this API to verify the eligibility of players who wish to join a game while they are in the lobby or waiting room. The API allows you to perform several checks to ensure that each player meets the necessary requirements. These checks include:
Validating the vZOO balance of each player: Ensuring that each player has a sufficient balance of vZOO tokens to participate in the game.
Checking if a player has been banned from the platform: Verifying if a player has been restricted from accessing the game due to violations or other reasons.
Verifying that the cost of joining the game does not exceed the maximum vZOO spending limit set for the game.
Grant access to the user if they pass all the validations of the game settlement.
Checking if the number of players exceeds the limit set for the game: Ensuring that the number of players attempting to join does not exceed the specified limit.
Verifying if the game owner's mirror address has sufficient vZOO balance: This check is useful if the game owner needs to top-up the reward or provide additional funds.
Verifying if the game has been verified by Zoo.Games: This check ensures that the game has undergone the necessary verification process by Zoo.Games.
We recommend that the game server performs these checks for each player upon entry. By calling this API with the relevant player information, the game server can determine if a player meets the criteria. If a player fails to pass any of the checks, the game server should reject their entry and remove them from the lobby or waiting room. This process helps maintain the integrity and fairness of the game environment.
POST
API_END_POINT_URL/API_KEY/game/ready
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
userJwts*
Array
Array of user's JWT Token list. - Must be arranged by the user entry order
userPrimaryAddresses*
Array
Array of user's primary address.
- Must be arranged by the user entry order - Exact same array length as user JWT
userLockAmounts*
Array
Array of user's spending vZOO.
- Must be arranged by the user entry order - Exact same array length as user JWT - The value must be less than Game Config "maxVZOO"
gameAddress*
Address
Address of Game/Project registered Primary Address
gameLockAmount*
Number
Game owner top-up amount in this game - Entry 0 for no top-up
List of error messages
checkApiKey invalid api key (user not in allow list)
Your registered game isn't verified
game_address not match
API Key and game_address doesn't match
jwt malformed
JWT Tokens incorrect
Game round already started
Generated Round ID already started. Please try to call this function again
Game not enabled
Your registered game isn't verrified
Too many players
Number of Players exceeded maxPlayerPerRound in Globl Game config
No players
No players list sent
Player count mismatch
The list doesn't match of length
Game has not enough VZOO
In case you want to top-up a reward.
This mean game mirror address doesn't have enough vZOO as a fund
vZOO Balance not enough
Some Players don't have enough vZOO to spend
gameVerify gameAddress not match in user Jwt
gameAddress in JWT payload doesn't match with same as caller gameAddress
gameVerify user Jwt expired
Player's JWT already expired. Need to approve again
gameVerify user allowance not enough
Player didn't approve to spend enough vZOO by requirement
gameVerify user balance not enough
Player don't have enough balance to spend
Player amount too large
vZOO require per use is higher than MAX vZOO LIMIT Global Game Config
Player has no ticket
If game required to purchase a ticket. It means Player dont have a ticket
User was banned
This user was banned from the system
After using the "Ready" API to verify the validity of the game settlement, you can proceed to use the "Start" function to initiate the game round. The Start API allows you to lock the specified amounts from the users and the game developer based on your provided parameters.
POST
API_END_POINT_URL/API_KEY/game/start
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
userJwts*
Array
Array of user's JWT Token list. - Must be arranged by the user entry order
userPrimaryAddresses*
Array
Array of user's primary address.
- Must be arranged by the user entry order - Exact same array length as user JWT
userLockAmounts*
Array
Array of user's spending vZOO.
- Must be arranged by the user entry order - Exact same array length as user JWT - The value must be less than Game Config "maxVZOO"
gameAddress*
Address
Address of Game/Project registered Primary Address
gameLockAmount*
Number
Game owner top-up amount in this game - Entry 0 for no top-up
List of error messages
checkApiKey invalid api key (user not in allow list)
Your registered game isn't verified
game_address not match
API Key and game_address doesn't match
jwt malformed
JWT Tokens incorrect
Game round already started
Generated Round ID already started. Please try to call this function again
Game not enabled
Your registered game isn't verrified
Too many players
Number of Players exceeded maxPlayerPerRound in Global Game config
No players
No players list sent
Player count mismatch
The list doesn't match of length
Game has not enough VZOO
In case you want to top-up a reward.
This mean game mirror address doesn't have enough vZOO as a fund
vZOO Balance not enough
Some Players don't have enough vZOO to spend
gameVerify gameAddress not match in user Jwt
gameAddress in JWT payload is not matched to caller gameAddress
gameVerify user Jwt expired
Player's JWT has expired. Need to re-approve it
gameVerify user allowance not enough
Player didn't approve to spend enough vZOO by requirement
gameVerify user balance not enough
Player don't have enough balance to spend
Player amount too large
vZOO require per use is higher than MAX vZOO LIMIT Global Game Config
Player has no ticket
If game required to purchase a ticket. It means Player dont have a ticket
User was banned
This user was banned from the system
The Over API is used to finalize the game round and broadcast the rewards that each user will receive from the locked vZOO pool of a specific game. The rules for distributing rewards are as follows:
The total amount paid by players should not exceed the total locked vZOO in the pool.
Assume you have two players with an entry fee of 100 vZOO each, resulting in a locked vZOO pool of 200 vZOO. If the final reward is 190 vZOO for Player A and 10 vZOO for Player B (determined by the game), you need to call the "Game Over" API with adjusted rewards.
If the game developer is entitled to receive a fee from the players' rewards, it should be deducted accordingly. This deduction occurs after the platform fee calculation.
It's essential to ensure that the total amount paid by players, including the platform fee, does not exceed the locked vZOO pool amount.
If the game developer has topped up additional rewards for this round, it is necessary to follow the rule of "Total paid + Platform Fee <= Locked vZOO Pool amount."
By adhering to these rules and providing the adjusted rewards (after deducting the platform fee and game developer's fee, if applicable), the "Game Over" API can be used to distribute the final rewards to the players.
POST
API_END_POINT_URL/API_KEY/game/over
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameResultAmount*
Number
How much reward Game Address wants to takes a reward from the game round. such as Fee or any purposes
usersResultAmount*
Array
Array of user's reward deduct with Platform fee.
- Must ordered by entried order of user exactly from Game Start API
roundId*
Hex ID
ID your got from "Game Start" API result.
Start with '0x1234....89'
gameAddress*
Address
Address of Game/Project registered Primary Address
List of error messages
Game round not started
Game is not started yet or already overed
Game round not found
Cannot found this game round by roundId
Game round too short
You executed this API too early than Minimum Game round time in Global Game Config
Player count mismatch
Length of users reward not exactly the same with Length of users after you called "Game Start"
Game result amount is too large
Total Paid + Platform fee was more than Total vZOO locked in the pool
You need to check gameResultAmount and usersResultAmount parameter
This is similar to V1, but there’s no need to deduct a fee. You can input the full amount of rewards. The only condition is that the total reward amount must match exactly.
For example, if you startAPI request with 4 players and each player has locked 100 vZOO, then the total locked vZOO is 400 vZOO.
With this Over V2 API, you need to distribute all 400 vZOO to the players. The reward amount cannot be less or more than this. It must be exactly 400 vZOO.
POST
API_END_POINT_URL/API_KEY/game/over_v2
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
gameResultAmount*
Number
How much reward Game Address wants to takes a reward from the game round. such as Fee or any purposes
usersResultAmount*
Array
Array of user's reward
- Must ordered by entried order of user exactly from Game Start API
roundId*
Hex ID
ID your got from "Game Start" API result.
Start with '0x1234....89'
gameAddress*
Address
Address of Game/Project registered Primary Address
List of error messages
Game round not started
Game is not started yet or already overed
Game round not found
Cannot found this game round by roundId
Game round too short
You executed this API too early than Minimum Game round time in Global Game Config
Player count mismatch
Length of users reward not exactly the same with Length of users after you called "Game Start"
Game result amount is too large
Total Paid + Platform fee was more than Total vZOO locked in the pool
You need to check gameResultAmount and usersResultAmount parameter
The Cancel API is used when there is an issue with a specific game round, and you need to cancel it. By calling this API, all the vZOO tokens that were locked, both from the users and the game address, will be returned in their full amount.
POST
API_END_POINT_URL/API_KEY/game/cancel
SDK Preparation
You need to prepare for SignedSignatureFromPayload by
Installing zoo-game-sdk by npm install zoo-game-sdk
Import SDK by import * as ApiKey from 'zoo-game-sdk/src/auth/apikey/index'
Signing by SDK
let bodyMessage =JSON.stringify(payload);
let hmac = ApiKey.signData(bodyMessage, SEC_KEY);
*Use "hmac" as SignedSignatureFromPayload
API_KEY*
String
API_KEY
roundId*
Hex ID
ID you get from the "Game Start" API result.
Start with '0x1234....89'
gameAddress*
Address
Address of Game/Project registered Primary Address
List of error messages
Game round not started
Game is not started yet or already overed
Game round not found
Cannot found this game round by roundId
Game round too short
You executed this API too early than Minimum Game round time in Global Game Config
Player count mismatch
Length of users reward not exactly the same with Length of users after you called "Game Start"
Game result amount is too large
Total Paid + Platform fee was more than Total vZOO locked in the pool
You need to check gameResultAmount and usersResultAmount parameter
Track and retrieve the status of all players in your game
ZooGames provides a status feature that allows you to update and track the status of players in your game. With this functionality, you have the flexibility to monitor and display the real-time status of players to enhance the gaming experience. This feature can be seamlessly integrated into your game, your website or your mobile application and will be also visible on the Zoo.Games platform.
Optionally, you can add a note while setting up the player status. This note will provide an extra epic experience for your players. Here are some note examples:
Mastering the art of virtual sword fighting!"
"Embarking on an epic quest to save the kingdom."
"Exploring uncharted territories in search of hidden treasures."
"Unleashing magical powers to vanquish foes."
etc.
GET
API_END_POINT_URL/api/analytics
GET
API_END_POINT_URL/api/analytics?gameName=&isOnline=true
If no query is sent, the system will return all existing records on ZooGames.
Before utilizing these APIs, it is essential to have a clear understanding of the concept of and .
username*
String
ZooGamesID or any string reference
gameName*
String
You game's name or any string as a reference * Recommended to use gameName as a Game ID that you have registred on Zoo.games
gameVersion
String
Can be any string like V.1.2
gameAddress
Address
Your registered game address
isPlaying
Boolean
Online or Offline status
note
String
A remark
gameName
String
the game name or stat name for retrieval
isOnline
boolean
Display only online or offline users.
Three official collections available
You can integrate these NFTs into your games seamlessly using our API, allowing you to leverage the unique features and attributes of ZooGenes, ZooBoosters, and ZooElixirs. Enhance your gaming experience by incorporating these freely available NFTs into your game mechanics.
As you can see from the above, the boosting number and locktime reducing amount are different. Even on the off chance that these should be the same, each NFT has its own individual number, making it truly unique.
GET
API_END_POINT_URL/API_KEY/userInfo/nft/zooboosters/ZOO_GAMES_ID
ZOO_GAMES_ID*
String
ZooGamesId
API_KEY*
String
Api Key
ZooGenes set themselves apart from traditional generative NFT projects. Designed specifically for gaming, ZooGenes are dynamic and engaging. Ever wondered what a polar bear sporting sunglasses and a viking hat would look like? Or a charming bunny donning a biker jacket surrounded by flames? These characters possess distinctive visual traits and can be traded among players. However, their uniqueness goes beyond appearances. Each ZooGene comes with individual abilities, such as Strength, Agility, and more. These attributes will carry over to future ZooKeeper games, ensuring that your ZooGenes' capabilities remain relevant and impactful across various gaming experiences.
GET
API_END_POINT_URL/API_KEY/userInfo/nft/zoogenes/ZOO_GAMES_ID
ZOO_GAMES_ID*
String
ZooGamesId
API_KEY*
String
Api Key
ZooElixirs are generative NFTs. This means that they are randomly assigned a name, color, and shape, resulting in each ZooElixir being unique.
GET
API_END_POINT_URL/API_KEY/userInfo/nft/zooelixirs/ZOO_GAMES_ID
ZOO_GAMES_ID*
String
ZooGamesId
API_KEY*
String
Api Key
ZooBoosters are primarily known for improving your ZOO rewards when added to a farming pool, but also for being tradable in or on the NFT Marketplace , as well as being used in the ZooGames protocol. The percentage (%) boost and locktime reducer linked to each of these ZooBoosters represent their farming abilities. Some may be the same as others, and some will vary.