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.
- Example
/feed
Query string parameters
limit
How many feed entries to return.
| Type | int |
| Required | No |
| Limitations | Must be a valid number between 1 and 1000 |
| Examples | 25 |
Response
- Success (2XX)
- Failure (4XX)
[
{
"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
| Code | Success | Description |
|---|---|---|
| 2XX | Yes | Your request was successfully processed and data is returned. |
| 4XX | No | Your request failed. |
| 5XX | No | Something failed due to a server-side error. If the error continues after several attempts, please report this to the On3 support team. |