Activity #2002
User #93 commented product #117
3/12/2026, 8:32:57 AM
Overview
activities / #2002
User #93 commented product #117
3/12/2026, 8:32:57 AM
User #93 commented product #117
3/12/2026, 8:32:57 AM
View recordUser #93 commented product #117 · 3/12/2026, 8:32:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2002" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2002" ); 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/2002"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2002"
)
activitie = res.json() Response
{
"id": 2002,
"userId": 93,
"verb": "commented",
"targetType": "product",
"targetId": 117,
"createdAt": "2026-03-12T08:32:57.622Z"
}