Activity #416
User #89 created product #85
12/7/2025, 1:32:40 PM
Overview
activities / #416
User #89 created product #85
12/7/2025, 1:32:40 PM
User #89 created product #85
12/7/2025, 1:32:40 PM
View recordUser #89 created product #85 · 12/7/2025, 1:32:40 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/416" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/416" ); 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/416"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/416"
)
activitie = res.json() Response
{
"id": 416,
"userId": 89,
"verb": "created",
"targetType": "product",
"targetId": 85,
"createdAt": "2025-12-07T13:32:40.523Z"
}