Activity #78
User #236 updated product #6
10/27/2025, 7:30:05 AM
Overview
activities / #78
User #236 updated product #6
10/27/2025, 7:30:05 AM
User #236 updated product #6
10/27/2025, 7:30:05 AM
View recordUser #236 updated product #6 · 10/27/2025, 7:30:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/78" ); 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/78"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/78"
)
activitie = res.json() Response
{
"id": 78,
"userId": 236,
"verb": "updated",
"targetType": "product",
"targetId": 6,
"createdAt": "2025-10-27T07:30:05.912Z"
}