activities
activities
Page 120 of 125.
Overview
-
User #111 liked restaurant #29
8/7/2025, 12:11:39 AM
View record -
User #164 created recipe #39
4/17/2026, 10:16:41 AM
View record -
User #122 shared restaurant #65
9/27/2025, 8:39:36 AM
View record -
User #96 deleted product #192
5/29/2025, 5:50:52 PM
View record -
User #179 liked product #192
10/28/2025, 3:09:34 AM
View record -
User #239 shared product #185
5/9/2026, 12:13:54 PM
View record -
8/16/2025, 12:44:35 PM
View record -
User #88 updated product #6
6/5/2025, 4:30:22 PM
View record -
2/10/2026, 9:27:44 PM
View record -
7/19/2025, 12:55:28 PM
View record -
User #169 shared recipe #287
6/7/2025, 12:58:30 PM
View record -
User #146 created product #87
4/2/2026, 8:50:33 AM
View record -
User #124 liked product #50
6/3/2025, 10:35:41 AM
View record -
12/8/2025, 2:01:08 PM
View record -
User #103 shared comment #938
8/16/2025, 10:31:08 PM
View record -
User #229 created restaurant #69
2/25/2026, 6:09:35 PM
View record -
User #78 deleted product #149
3/21/2026, 4:45:47 AM
View record -
User #214 liked recipe #112
5/27/2025, 5:58:01 AM
View record -
User #68 updated restaurant #81
10/23/2025, 5:53:21 PM
View record -
User #29 commented product #195
2/17/2026, 8:15:44 AM
View record -
User #35 liked product #8
11/14/2025, 7:46:14 PM
View record -
4/4/2026, 8:34:01 PM
View record -
User #30 commented restaurant #44
2/10/2026, 3:43:10 AM
View record -
User #245 commented comment #170
12/1/2025, 7:41:02 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": 2857,
"userId": 111,
"verb": "liked",
"targetType": "restaurant",
"targetId": 29,
"createdAt": "2025-08-07T00:11:39.015Z"
},
{
"id": 2858,
"userId": 164,
"verb": "created",
"targetType": "recipe",
"targetId": 39,
"createdAt": "2026-04-17T10:16:41.039Z"
},
{
"id": 2859,
"userId": 122,
"verb": "shared",
"targetType": "restaurant",
"targetId": 65,
"createdAt": "2025-09-27T08:39:36.945Z"
}
],
"meta": {
"page": 120,
"limit": 24,
"total": 3000,
"totalPages": 125
},
"links": {
"self": "/api/v1/activities?page=120&limit=24",
"first": "/api/v1/activities?page=1&limit=24",
"last": "/api/v1/activities?page=125&limit=24",
"next": "/api/v1/activities?page=121&limit=24",
"prev": "/api/v1/activities?page=119&limit=24"
}
}