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