Quick Start
Easy-Access References:
1. Obtain an API Key
2. Verify the API Key
curl -X GET 'https://sandbox.api.labs.zelus.io/v1/account' \
-H "x-api-key: YOUR_API_KEY"import requests
url = "https://sandbox.api.labs.zelus.io/v1/account"
headers = {
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
account_status = response.json()['result']['account']
print(account_status)const axios = require('axios');
const url = "https://sandbox.api.labs.zelus.io/v1/account";
const headers = {
"x-api-key": "YOUR_API_KEY"
};
axios.get(url, { headers: headers }).then(response => {
const accountStatus = response.data.result.account;
console.log(accountStatus);
}).catch(error => {
console.error('Error:', error.response.data);
});2.2. Get the contract to work with
curl -X GET 'https://sandbox.api.labs.zelus.io/v1/account/contracts' \
-H "x-api-key: YOUR_API_KEY"3. Create Wallets
3.1 Create a Wallet with an Email Address, Wallet1
3.2 Create a Wallet with a Phone Number, Wallet2
3.3 Create another empty wallet, Wallet3
4. Mint NFT Tokens
4.1. Mint an NFT for Wallet1
4.2. Mint an NFT for Wallet2
5. Check if a Specific NFT is in a user's wallet
5.1. Check NFTs for Wallet1
5.2. Check NFTs for Wallet2
5.3. Check NFTs for Wallet3
6. Get all NFTs in a User's wallet
6.1 For Wallet1
6.2 For Wallet3
Conclusion
Last updated