Getting Started
To get started using the Lollipop Protocol Rest API, try fetching data from the wallet-info
endpoint using your framework of choice.
The endpoint will return an object containing a list of NFT assets and token assets.
Curl
curl -i -H 'Accept: application/json' https://api.lollipop.xyz/v1/wallet-info/AyHLqfyotr8U2vjdJs6HN9YrHPeiT6rvK4tqCuhhvSG5
JavaScript
let version = "v1"
let endpoint = "wallet-info"
let argument = "AyHLqfyotr8U2vjdJs6HN9YrHPeiT6rvK4tqCuhhvSG5"
let url = `https://api.lollipop.xyz/${version}/${endpoint}/${argument}`
fetch(url)
.then((response) => response.json())
.then((data) => {
console.log('Success:', data);
})
.catch((error) => {
console.error('Error:', error);
});
Node.js
const axios = require("axios");
let version = "v1"
let endpoint = "wallet-info"
let argument = "2EgqzonmU5jf3PFbhP7rgq7nrXKKCzUNVHMxXcj4iNjU"
let url = `https://api.lollipop.xyz/${version}/${endpoint}/${argument}`
axios(url)
.then(function (response) {
// handle success
console.log(response.data);
})
.catch(function (error) {
// handle error
console.log(error);
})
Python
import requests
version = "v1"
endpoint = "wallet-info"
argument = "2EgqzonmU5jf3PFbhP7rgq7nrXKKCzUNVHMxXcj4iNjU"
url = f"https://api.lollipop.xyz/{version}/{endpoint}/{argument}"
r = requests.get(url)
print(r.json())
Sample Response
The wallet-info
endpoint should return a response matching the following format:
{
"nfts": {
"assets": [
{
"animation_url": "",
"external_url": "",
"attributes": [
{
"trait_type": "HEAD",
"value": "Degen Service Hat"
},
{
"trait_type": "BODY",
"value": "Football Jersey - Blue/White"
},
{
"trait_type": "FUR",
"value": "Blue - Grin"
},
{
"trait_type": "MOUTH",
"value": "Bone - Grin"
},
{
"trait_type": "BACKGROUND",
"value": "Yellow"
},
{
"trait_type": "GLASSES",
"value": "No Traits"
},
{
"trait_type": "❤️",
"value": "4"
}
],
"category": "image",
"chain": "Solana",
"metadata_key": "6jL6NdcjAo1HeSrwJz1R9bRe5bwxJ59dL4SCmm3C1iUN",
"update_authority": "trshC9cTgL3BPXoAbp5w9UfnUMWEJx5G61vUijXPMLH",
"mint": "DuDcQi8RixQTKfwYZec74s8L8GDaR8hVwE69wXrBnBmM",
"name": "Degen Trash Panda #15388",
"symbol": "DTP",
"uri": "https://arweave.net/SIzJwgcQ0sne4boik2Ag5aWg4IzWmxX1VmZAgk5sv94",
"seller_fee_basis_points": 0,
"primary_sale_happened": 1,
"is_mutable": true,
"edition_nonce": 255,
"token_standard": "None",
"use_method": "None",
"remaining": null,
"total": null,
"collection_verified": 1,
"collection_key": "GoLMLLR6iSUrA6KsCrFh7f45Uq5EHFQ3p8RmzPoUH9mb",
"collection_name": "Degen Trash Pandas",
"collection_family": "Degeniverse",
"creators": [
{
"address": "CLErvyrMpi66RAxNV2wveSi25NxHb8G383MSVuGDgZzp",
"share": 0
},
{
"address": "trshC9cTgL3BPXoAbp5w9UfnUMWEJx5G61vUijXPMLH",
"share": 68
},
{
"address": "ENACtpCWKJAomGtWVH2UqdNKmkR1Ft4V81gC4oUbi5W1",
"share": 26
},
{
"address": "8BoJdKKz3j4bUGJdAdGhaiSpv1EM9HhSm1cjy1iPrfhk",
"share": 5
},
{
"address": "3B86L4BrRjm9V7sd3AjjJq5XFtyqMgCYMCTwqMMvAxgr",
"share": 1
}
],
"description": "Inhabiting their own underworld society, the Degenerate Trash Pandas are governed by no individuals and live by no rules. What they have is their trash, and their trash is their treasure. They’ll do whatever they can to get their dirty little paws on it.",
"image": "https://www.arweave.net/IdO5bwALZ0GvTHx6gLwb32wrlKD9aIFMblBTf-ztmnE?ext=png"
},
...
],
"total": 28
},
"fungible_tokens": {
"assets": [
{
"chain": "Solana",
"token_account_key": "FwpE1JPCVd3KZDhHyyFK2nStyJYTbGLg3cBDH2mWt6xX",
"mint": "35v9KktjoyRWbACbtVcEFjGbmhAN2QFb4hJvB2MnSyTd",
"name": "",
"symbol": "",
"amount": 3000000000,
"decimal": 6,
"delegate": null,
"state": "Initialized",
"is_native": false,
"delegated_amount": 0,
"close_authority": null
},
...
],
"total": 33
}
"page": 0,
"total": 62,
"processing_time": "7ms"
}