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