activities
activities
Page 116 of 125.
Overview
-
User #238 commented restaurant #62
1/21/2026, 12:36:34 PM
View record -
User #206 shared restaurant #48
9/19/2025, 10:38:35 PM
View record -
User #162 updated product #154
1/17/2026, 1:22:26 PM
View record -
User #227 updated restaurant #69
6/12/2025, 5:48:31 AM
View record -
User #180 shared restaurant #75
11/6/2025, 3:30:12 PM
View record -
12/9/2025, 10:00:36 PM
View record -
User #61 deleted product #133
10/17/2025, 8:16:24 AM
View record -
User #168 commented product #161
2/13/2026, 6:50:58 AM
View record -
User #186 shared restaurant #16
11/27/2025, 10:32:12 PM
View record -
User #192 updated product #153
6/25/2025, 5:22:34 AM
View record -
User #158 shared recipe #105
5/12/2026, 9:30:14 PM
View record -
10/19/2025, 8:29:14 AM
View record -
User #83 updated comment #657
4/12/2026, 6:32:08 AM
View record -
User #188 commented comment #457
4/22/2026, 5:42:01 AM
View record -
User #64 liked comment #1107
11/7/2025, 11:44:42 PM
View record -
User #58 created restaurant #43
4/2/2026, 10:04:59 AM
View record -
User #128 created recipe #130
11/21/2025, 5:26:40 PM
View record -
User #130 created restaurant #69
6/6/2025, 12:45:49 AM
View record -
User #113 created product #119
11/11/2025, 1:56:13 PM
View record -
7/15/2025, 12:02:49 AM
View record -
User #19 updated recipe #267
1/6/2026, 8:40:56 AM
View record -
User #8 updated comment #513
12/6/2025, 12:33:28 AM
View record -
User #175 created recipe #280
12/28/2025, 8:36:18 AM
View record -
User #61 updated product #26
6/6/2025, 5:08:48 AM
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": 2761,
"userId": 238,
"verb": "commented",
"targetType": "restaurant",
"targetId": 62,
"createdAt": "2026-01-21T12:36:34.116Z"
},
{
"id": 2762,
"userId": 206,
"verb": "shared",
"targetType": "restaurant",
"targetId": 48,
"createdAt": "2025-09-19T22:38:35.844Z"
},
{
"id": 2763,
"userId": 162,
"verb": "updated",
"targetType": "product",
"targetId": 154,
"createdAt": "2026-01-17T13:22:26.137Z"
}
],
"meta": {
"page": 116,
"limit": 24,
"total": 3000,
"totalPages": 125
},
"links": {
"self": "/api/v1/activities?page=116&limit=24",
"first": "/api/v1/activities?page=1&limit=24",
"last": "/api/v1/activities?page=125&limit=24",
"next": "/api/v1/activities?page=117&limit=24",
"prev": "/api/v1/activities?page=115&limit=24"
}
}