Skip to main content

Get activity feed

Fetch the global activity feed of user activity from shop spends, bids placed, and quests completed.

note

It's not currently possible to order the activity feed and entries are returned in date order as they occured.

Request

HTTP GET to /feed with Content-Type: application/json.

/feed

Query string parameters

limit

How many feed entries to return.

Typeint
RequiredNo
LimitationsMust be a valid number between 1 and 1000
Examples25

Response

[
{
"userAddress": "string", // user address wallet who carried out the action
"occured": "datetime", // iso1806, when the activity occured
"iconUrl": // fully qualified contextual image url, e.g. the users avatar
"text": "string", // activity text
"type": "string" // type, e.g. ShopSpend,s ShopBid, or QuestComplete
},
// etc
]

Codes

CodeSuccessDescription
2XXYesYour request was successfully processed and data is returned.
4XXNoYour request failed.
5XXNoSomething failed due to a server-side error. If the error continues after several attempts, please report this to the On3 support team.