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