curl --request GET \
--url https://api-staging.boost.xyz/metrics/recent-activity
{
"data": [
{
"userId": "<string>",
"userAddress": "<string>",
"boostName": "<string>",
"boostId": "<string>",
"updatedAt": "<string>",
"amount": "<string>",
"type": "<string>",
"decimals": 123,
"creatorAddress": "<string>",
"tokenSymbol": "<string>",
"imagePath": "<string>",
"transactionHash": "<string>",
"tokenContractAddress": "<string>",
"network": "<string>",
"tokenImageUri": "<string>",
"taskNetwork": "<string>",
"actionParams": {
"type": "bridge",
"data": {
"destinationNetworkId": "<string>",
"sourceChainId": 123,
"destinationChainId": 123,
"tokenAddress": "<string>",
"tokenDecimals": 123,
"amount": "<string>",
"amountOperator": "any"
}
}
}
]
}
Get the ten most recent activities
curl --request GET \
--url https://api-staging.boost.xyz/metrics/recent-activity
{
"data": [
{
"userId": "<string>",
"userAddress": "<string>",
"boostName": "<string>",
"boostId": "<string>",
"updatedAt": "<string>",
"amount": "<string>",
"type": "<string>",
"decimals": 123,
"creatorAddress": "<string>",
"tokenSymbol": "<string>",
"imagePath": "<string>",
"transactionHash": "<string>",
"tokenContractAddress": "<string>",
"network": "<string>",
"tokenImageUri": "<string>",
"taskNetwork": "<string>",
"actionParams": {
"type": "bridge",
"data": {
"destinationNetworkId": "<string>",
"sourceChainId": 123,
"destinationChainId": 123,
"tokenAddress": "<string>",
"tokenDecimals": 123,
"amount": "<string>",
"amountOperator": "any"
}
}
}
]
}
Success
The response is of type object
.