activities
activities
Page 123 of 125.
Overview
-
User #204 updated product #179
10/6/2025, 6:37:39 PM
View record -
User #33 liked comment #190
8/29/2025, 1:59:32 PM
View record -
User #36 commented product #160
12/20/2025, 8:55:17 AM
View record -
User #227 deleted comment #1246
10/16/2025, 12:56:00 AM
View record -
7/28/2025, 7:09:16 AM
View record -
3/13/2026, 4:02:14 PM
View record -
User #109 deleted restaurant #96
6/18/2025, 4:02:47 AM
View record -
User #175 commented product #49
10/16/2025, 2:14:36 AM
View record -
4/3/2026, 12:40:55 AM
View record -
User #110 commented product #76
9/22/2025, 10:53:16 AM
View record -
User #176 commented restaurant #98
1/25/2026, 1:04:08 PM
View record -
User #107 updated product #3
1/12/2026, 11:12:18 AM
View record -
User #31 created product #162
1/15/2026, 4:57:22 AM
View record -
User #196 created product #67
6/26/2025, 5:46:47 AM
View record -
User #208 commented restaurant #38
8/18/2025, 10:04:07 AM
View record -
User #40 updated restaurant #75
12/15/2025, 12:37:08 PM
View record -
10/8/2025, 4:44:05 PM
View record -
User #102 updated recipe #194
12/3/2025, 10:29:18 AM
View record -
User #235 created recipe #261
7/9/2025, 7:52:39 PM
View record -
User #176 shared product #183
7/12/2025, 6:20:16 PM
View record -
User #220 commented recipe #79
3/4/2026, 6:25:44 AM
View record -
User #6 commented comment #1164
10/4/2025, 6:58:07 AM
View record -
User #57 commented recipe #71
12/3/2025, 7:44:35 PM
View record -
User #92 created product #88
1/3/2026, 10:10:15 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": 2929,
"userId": 204,
"verb": "updated",
"targetType": "product",
"targetId": 179,
"createdAt": "2025-10-06T18:37:39.045Z"
},
{
"id": 2930,
"userId": 33,
"verb": "liked",
"targetType": "comment",
"targetId": 190,
"createdAt": "2025-08-29T13:59:32.785Z"
},
{
"id": 2931,
"userId": 36,
"verb": "commented",
"targetType": "product",
"targetId": 160,
"createdAt": "2025-12-20T08:55:17.354Z"
}
],
"meta": {
"page": 123,
"limit": 24,
"total": 3000,
"totalPages": 125
},
"links": {
"self": "/api/v1/activities?page=123&limit=24",
"first": "/api/v1/activities?page=1&limit=24",
"last": "/api/v1/activities?page=125&limit=24",
"next": "/api/v1/activities?page=124&limit=24",
"prev": "/api/v1/activities?page=122&limit=24"
}
}