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