activities
activities
Page 39 of 125.
Overview
-
User #225 deleted comment #1230
8/5/2025, 7:49:45 AM
View record -
User #40 updated product #9
4/19/2026, 1:48:04 AM
View record -
User #130 updated restaurant #76
1/27/2026, 3:11:27 PM
View record -
User #205 created restaurant #36
12/24/2025, 8:59:29 AM
View record -
User #115 shared product #131
6/15/2025, 7:39:49 AM
View record -
User #34 deleted restaurant #89
3/27/2026, 1:18:01 PM
View record -
User #197 commented comment #93
4/5/2026, 5:34:39 AM
View record -
User #120 shared product #99
8/6/2025, 4:57:31 PM
View record -
User #42 deleted restaurant #44
1/17/2026, 3:31:15 AM
View record -
User #133 created product #70
5/31/2025, 11:02:41 PM
View record -
User #179 liked recipe #40
12/22/2025, 1:03:05 AM
View record -
9/5/2025, 11:48:25 PM
View record -
User #86 created product #53
4/5/2026, 8:17:51 PM
View record -
User #124 commented recipe #275
10/21/2025, 7:27:43 AM
View record -
User #245 liked comment #1259
6/12/2025, 7:18:27 AM
View record -
User #211 shared product #30
2/19/2026, 4:46:34 PM
View record -
User #43 deleted recipe #206
7/16/2025, 6:15:26 AM
View record -
3/28/2026, 11:10:43 PM
View record -
User #126 deleted restaurant #87
3/17/2026, 12:38:14 PM
View record -
User #76 created restaurant #71
6/5/2025, 9:05:56 AM
View record -
User #18 commented product #42
7/15/2025, 12:14:02 AM
View record -
User #75 shared product #150
2/18/2026, 1:00:26 PM
View record -
User #81 updated product #129
7/1/2025, 5:30:12 AM
View record -
User #50 commented recipe #88
1/5/2026, 5:37:30 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": 913,
"userId": 225,
"verb": "deleted",
"targetType": "comment",
"targetId": 1230,
"createdAt": "2025-08-05T07:49:45.742Z"
},
{
"id": 914,
"userId": 40,
"verb": "updated",
"targetType": "product",
"targetId": 9,
"createdAt": "2026-04-19T01:48:04.177Z"
},
{
"id": 915,
"userId": 130,
"verb": "updated",
"targetType": "restaurant",
"targetId": 76,
"createdAt": "2026-01-27T15:11:27.414Z"
}
],
"meta": {
"page": 39,
"limit": 24,
"total": 3000,
"totalPages": 125
},
"links": {
"self": "/api/v1/activities?page=39&limit=24",
"first": "/api/v1/activities?page=1&limit=24",
"last": "/api/v1/activities?page=125&limit=24",
"next": "/api/v1/activities?page=40&limit=24",
"prev": "/api/v1/activities?page=38&limit=24"
}
}