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