Upland User Information
Endpoints to retrieve Upland Users information.
Last updated
Endpoints to retrieve Upland Users information.
Last updated
GET /user/profile HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "2da598ba-0abb-44f9-bb30-86416af16a20",
"eosId": "1df22sd3",
"username": "any_username",
"networth": 104927.65,
"level": "Pro",
"avatarUrl": "https://any-url.upland.me",
"initialCity": "San Francisco",
"currentCity": "San Francisco",
"isInJail": false
}
GET /user/assets/nfts?currentPage=1&pageSize=1 HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"currentPage": 1,
"pageSize": 10,
"totalResults": 2,
"results": [
{
"id": 1234,
"category": "blkexplorer",
"name": "townhouse",
"rarityLevel": "townhouse",
"thumbnail": "https://any-url.upland.me",
"mintNumber": 0
}
]
}
GET /user/assets/properties?currentPage=1&pageSize=1 HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"currentPage": 1,
"pageSize": 10,
"totalResults": 2,
"results": [
{
"id": 55334346,
"address": "1467 28TH AVE",
"city": "San Francisco",
"neighborhood": {
"id": 798785521654878,
"name": "ALAMO SQUARE"
}
}
]
}