Activity #134
User #132 commented product #141
8/26/2025, 6:59:33 AM
Overview
activities / #134
User #132 commented product #141
8/26/2025, 6:59:33 AM
User #132 commented product #141
8/26/2025, 6:59:33 AM
View recordUser #132 commented product #141 · 8/26/2025, 6:59:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/134" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/134" ); 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/134"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/134"
)
activitie = res.json() Response
{
"id": 134,
"userId": 132,
"verb": "commented",
"targetType": "product",
"targetId": 141,
"createdAt": "2025-08-26T06:59:33.472Z"
}