Activity #1282
User #246 commented product #86
5/11/2026, 8:57:43 PM
Overview
activities / #1282
User #246 commented product #86
5/11/2026, 8:57:43 PM
User #246 commented product #86
5/11/2026, 8:57:43 PM
View recordUser #246 commented product #86 · 5/11/2026, 8:57:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1282" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1282" ); 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/1282"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1282"
)
activitie = res.json() Response
{
"id": 1282,
"userId": 246,
"verb": "commented",
"targetType": "product",
"targetId": 86,
"createdAt": "2026-05-11T20:57:43.104Z"
}