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