Reward Logs
Retrieve network rewards information by different keys and dates.
Wallet Rewards Range
Fetch reward logs for a wallet address within date range.
GET https://api.pollenmobile.io/explorer/wallet-rewards-range
Defined date range or if no range is provided, from the last month.
Sort key ("date" or "device") places arrays of reward log rows into groups.
Paginated with page_key.
Query Parameters
wallet_address*
String
The wallet address you're looking for.
date_from
String
Date format YYYY-MM-DD
date_to
String
Date format YYYY-MM-DD
sort
String
"date" or by "device" (default "date")
page_key
String
Page key from last request.
// example sorted by date...
{
"items": [
"2022-04-02": [
{
"reward": "hex validation",
"coverage": [],
"device": "MuddyStormyBumblebee",
"PIC": "10",
"transaction": "5gpDsyxfseJQXzeHYb5ZYfsNpkwh4cSKFfj7JhmM7oQXu1pSkNBfnbj8ZG5qWNU8qHdBvSZ8Jt5mhT2LKwiRv8r3",
"date": "2022-04-02",
"RSEratio": "1",
"client": "UptightConfusedCamellia",
"rewardID": "20220402PLLNOHVAGE",
"device_type": "bumblebee",
"wallet": "4ieP9S21QTGGbgu57kP9R6MNTx34MLBTyMVHfz1ywxRL",
"tx_status": "Finalized",
"PCN": "268.91358910003584",
"dailyPIC": "11156"
},
// ... 23 more rows
],
"2022-04-03": [
{
"reward": "hex validation",
"coverage": [],
"device": "RareLooseBumblebee",
"PIC": "10",
"transaction": "4BjLqbAzofH5uoxCyeT3PDMob34tpokCmqkJ5LHfccToLk5atxerc4BUpCYwk8CBP7A2JGQJSiLSYu8f5AQnyrNy",
"date": "2022-04-03",
"RSEratio": "1",
"client": "AbsentInternalCamellia",
"rewardID": "20220403PLLNLUCRYT",
"device_type": "bumblebee",
"wallet": "4ieP9S21QTGGbgu57kP9R6MNTx34MLBTyMVHfz1ywxRL",
"tx_status": "Finalized",
"PCN": "241.70157911698357",
"dailyPIC": "12412"
},
// ... 26 more rows
],
// dates all through 2022-06-02
],
// example page key
"page_key": "%7B%22wallet%22%3A%20%224ieP9S21QTGGbgu57kP9R6MNTx34MLBTyMVHfz1ywxRL%22%2C%20%22date%22%3A%20%222022-09-13%22%2C%20%22rewardID%22%3A%20%2220220913PLLN9911AA7E7630487EB880E7D21816C70C%22%7D"
}
// example sorted by device...
{
"items": [
"MuddyStormyBumblebee": [
{
"reward": "hex validation",
"coverage": [],
"device": "MuddyStormyBumblebee",
"PIC": "10",
"transaction": "5gpDsyxfseJQXzeHYb5ZYfsNpkwh4cSKFfj7JhmM7oQXu1pSkNBfnbj8ZG5qWNU8qHdBvSZ8Jt5mhT2LKwiRv8r3",
"date": "2022-04-02",
"RSEratio": "1",
"client": "UptightConfusedCamellia",
"rewardID": "20220402PLLNOHVAGE",
"device_type": "bumblebee",
"wallet": "4ieP9S21QTGGbgu57kP9R6MNTx34MLBTyMVHfz1ywxRL",
"tx_status": "Finalized",
"PCN": "268.91358910003584",
"dailyPIC": "11156"
},
// ... 34 more rows for MuddyStormyBumblebee
],
"DecorousShakyCamellia": [
{
"reward": "hex validation",
"coverage": [],
"device": "DecorousShakyCamellia",
"PIC": "40",
"transaction": "51BYa8VC9ypoeWVRYLysKEsAWdx2eARk1C8rvMxdni5i9sZ7chYtENsNaiqXKBbWLa59K6xfmeb55Dr4z7BRJtGL",
"date": "2022-04-02",
"RSEratio": "1",
"client": "RareLooseBumblebee",
"rewardID": "20220402PLLNZVMWMU",
"device_type": "flower",
"wallet": "4ieP9S21QTGGbgu57kP9R6MNTx34MLBTyMVHfz1ywxRL",
"tx_status": "Finalized",
"PCN": "1075.6543564001433",
"dailyPIC": "11156"
},
// ... 35 more rows for DecorousShakyCamellia
]
],
// example page key
"page_key": "%7B%22wallet%22%3A%20%224ieP9S21QTGGbgu57kP9R6MNTx34MLBTyMVHfz1ywxRL%22%2C%20%22date%22%3A%20%222022-09-13%22%2C%20%22rewardID%22%3A%20%2220220913PLLN9911AA7E7630487EB880E7D21816C70C%22%7D"
}Wallet Rewards All
Fetch all reward logs for a wallet address.
GET https://api.pollenmobile.io/explorer/wallet-rewards-all
Sort key ("date" or "device") places arrays of reward log rows into groups.
Paginated with page_key.
Query Parameters
wallet_address*
String
sort
String
"date" or by "device" (default "device")
page_key
String
Page key from last request.
Device Rewards Range
Fetch reward logs for a device within date range.
GET https://api.pollenmobile.io/explorer/device-rewards-range
Either with a defined range or if no range is provided, from the last month.
Sort key ("date" or "device") places arrays of reward log rows into groups.
Paginated with page_key.
Query Parameters
device*
String
Any device wacky name.
date_from
String
YYYY-MM-DD
date_to
String
YYYY-MM-DD
page_key
Dict
Pagination key returned from last request
sort
String
"date" or by "device" (default "date")
Device Rewards All
Fetch all reward logs for a device.
GET https://api.pollenmobile.io/explorer/device-rewards-all
Sort key ("date" or "device") places arrays of reward log rows into groups.
Paginated with page_key.
Query Parameters
device*
String
Any device wacky name.
date
String
Get for single day (optional)
sort
String
"date" or by "device" (default "date")
page_key
String
Page key from last request.
Ledger Rewards Range
Fetch entire reward logs ledger for specific date.
GET https://api.pollenmobile.io/explorer/ledger-rewards-date
Paginated with page_key.
Query Parameters
date
String
eg 2022-10-10
page_key
String
Page key from last request.
limit
Number
Limit to pagination requests.
Daily Rewards Status
For debugging - View daily status of attach, core, and honeybee logs. (Status, logs not included)
GET https://api.pollenmobile.io/explorer/daily-reward-status
Paginated with page_key.
Path Parameters
date*
String
eg "2022-07-17"
device
String
FranticGiantHoneybee
page_key
String
Page key from last request.
Last updated
Was this helpful?
