Activity #2039
User #26 commented product #152
8/3/2025, 3:53:24 PM
Overview
activities / #2039
User #26 commented product #152
8/3/2025, 3:53:24 PM
User #26 commented product #152
8/3/2025, 3:53:24 PM
View recordUser #26 commented product #152 · 8/3/2025, 3:53:24 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2039" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2039" ); 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/2039"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2039"
)
activitie = res.json() Response
{
"id": 2039,
"userId": 26,
"verb": "commented",
"targetType": "product",
"targetId": 152,
"createdAt": "2025-08-03T15:53:24.613Z"
}