activities
activities
Page 57 of 125.
Overview
-
User #159 deleted product #166
5/31/2025, 2:42:30 PM
View record -
User #44 shared restaurant #29
8/8/2025, 10:10:25 AM
View record -
User #121 shared restaurant #12
7/30/2025, 12:58:51 AM
View record -
User #246 commented product #167
10/16/2025, 2:50:36 AM
View record -
User #30 commented product #130
3/16/2026, 12:45:40 AM
View record -
12/9/2025, 7:29:17 AM
View record -
User #165 shared product #48
6/23/2025, 11:40:47 AM
View record -
User #206 shared product #74
8/10/2025, 4:23:44 AM
View record -
User #209 shared comment #449
2/28/2026, 11:49:38 AM
View record -
User #139 created product #126
7/14/2025, 5:02:44 AM
View record -
User #208 liked recipe #60
2/10/2026, 9:40:54 AM
View record -
12/8/2025, 11:22:01 AM
View record -
User #123 shared recipe #151
6/18/2025, 12:06:19 AM
View record -
User #104 created restaurant #48
1/1/2026, 10:58:47 AM
View record -
User #72 created restaurant #4
1/27/2026, 12:07:39 AM
View record -
User #197 liked recipe #112
7/31/2025, 7:54:53 AM
View record -
User #192 liked comment #1120
3/22/2026, 12:45:17 AM
View record -
User #159 updated comment #506
8/2/2025, 8:18:18 AM
View record -
User #211 created recipe #58
9/12/2025, 6:53:40 AM
View record -
11/12/2025, 2:50:09 AM
View record -
User #12 deleted restaurant #85
12/5/2025, 2:35:34 AM
View record -
User #94 liked restaurant #82
5/23/2025, 10:20:35 AM
View record -
User #197 commented restaurant #66
11/16/2025, 9:49:10 AM
View record -
User #37 updated recipe #260
7/28/2025, 1:34:08 PM
View record
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/activities?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/activities.d.ts https://example-data.com/types/activities.d.ts
import type { Activity, ListEnvelope } from "./types/activities";
const res = await fetch(
"https://example-data.com/api/v1/activities?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Activity>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1345,
"userId": 159,
"verb": "deleted",
"targetType": "product",
"targetId": 166,
"createdAt": "2025-05-31T14:42:30.780Z"
},
{
"id": 1346,
"userId": 44,
"verb": "shared",
"targetType": "restaurant",
"targetId": 29,
"createdAt": "2025-08-08T10:10:25.534Z"
},
{
"id": 1347,
"userId": 121,
"verb": "shared",
"targetType": "restaurant",
"targetId": 12,
"createdAt": "2025-07-30T00:58:51.530Z"
}
],
"meta": {
"page": 57,
"limit": 24,
"total": 3000,
"totalPages": 125
},
"links": {
"self": "/api/v1/activities?page=57&limit=24",
"first": "/api/v1/activities?page=1&limit=24",
"last": "/api/v1/activities?page=125&limit=24",
"next": "/api/v1/activities?page=58&limit=24",
"prev": "/api/v1/activities?page=56&limit=24"
}
}