Activity #1225
User #177 updated product #127
9/23/2025, 12:33:34 AM
Overview
activities / #1225
User #177 updated product #127
9/23/2025, 12:33:34 AM
User #177 updated product #127
9/23/2025, 12:33:34 AM
View recordUser #177 updated product #127 · 9/23/2025, 12:33:34 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1225" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1225" ); 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/1225"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1225"
)
activitie = res.json() Response
{
"id": 1225,
"userId": 177,
"verb": "updated",
"targetType": "product",
"targetId": 127,
"createdAt": "2025-09-23T00:33:34.643Z"
}