Activity #1939
User #192 commented product #128
12/16/2025, 4:18:51 PM
Overview
activities / #1939
User #192 commented product #128
12/16/2025, 4:18:51 PM
User #192 commented product #128
12/16/2025, 4:18:51 PM
View recordUser #192 commented product #128 · 12/16/2025, 4:18:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1939" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1939" ); const activity = 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 } from "./types/activities";
const res = await fetch(
"https://example-data.com/api/v1/activities/1939"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1939"
)
activitie = res.json() Response
{
"id": 1939,
"userId": 192,
"verb": "commented",
"targetType": "product",
"targetId": 128,
"createdAt": "2025-12-16T16:18:51.785Z"
}