Activity #925
User #86 created product #53
4/5/2026, 8:17:51 PM
Overview
activities / #925
User #86 created product #53
4/5/2026, 8:17:51 PM
User #86 created product #53
4/5/2026, 8:17:51 PM
View recordUser #86 created product #53 · 4/5/2026, 8:17:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/925" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/925" ); 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/925"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/925"
)
activitie = res.json() Response
{
"id": 925,
"userId": 86,
"verb": "created",
"targetType": "product",
"targetId": 53,
"createdAt": "2026-04-05T20:17:51.428Z"
}