Activity #2159
User #189 created product #136
11/13/2025, 3:00:22 PM
Overview
activities / #2159
User #189 created product #136
11/13/2025, 3:00:22 PM
User #189 created product #136
11/13/2025, 3:00:22 PM
View recordUser #189 created product #136 · 11/13/2025, 3:00:22 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2159" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2159" ); 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/2159"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2159"
)
activitie = res.json() Response
{
"id": 2159,
"userId": 189,
"verb": "created",
"targetType": "product",
"targetId": 136,
"createdAt": "2025-11-13T15:00:22.936Z"
}