Activity #740
User #132 updated product #71
10/12/2025, 3:54:46 PM
Overview
activities / #740
User #132 updated product #71
10/12/2025, 3:54:46 PM
User #132 updated product #71
10/12/2025, 3:54:46 PM
View recordUser #132 updated product #71 · 10/12/2025, 3:54:46 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/740" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/740" ); 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/740"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/740"
)
activitie = res.json() Response
{
"id": 740,
"userId": 132,
"verb": "updated",
"targetType": "product",
"targetId": 71,
"createdAt": "2025-10-12T15:54:46.082Z"
}