Activity #3000
User #128 commented product #32
8/27/2025, 9:28:19 AM
Overview
activities / #3000
User #128 commented product #32
8/27/2025, 9:28:19 AM
User #128 commented product #32
8/27/2025, 9:28:19 AM
View recordUser #128 commented product #32 · 8/27/2025, 9:28:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/3000" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/3000" ); 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/3000"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/3000"
)
activitie = res.json() Response
{
"id": 3000,
"userId": 128,
"verb": "commented",
"targetType": "product",
"targetId": 32,
"createdAt": "2025-08-27T09:28:19.298Z"
}