Activity #128
User #23 commented product #64
2/18/2026, 12:02:02 PM
Overview
activities / #128
User #23 commented product #64
2/18/2026, 12:02:02 PM
User #23 commented product #64
2/18/2026, 12:02:02 PM
View recordUser #23 commented product #64 · 2/18/2026, 12:02:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/128" ); 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/128"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/128"
)
activitie = res.json() Response
{
"id": 128,
"userId": 23,
"verb": "commented",
"targetType": "product",
"targetId": 64,
"createdAt": "2026-02-18T12:02:02.237Z"
}