Activity #165
User #46 updated product #114
12/15/2025, 9:02:28 AM
Overview
activities / #165
User #46 updated product #114
12/15/2025, 9:02:28 AM
User #46 updated product #114
12/15/2025, 9:02:28 AM
View recordUser #46 updated product #114 · 12/15/2025, 9:02:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/165" ); 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/165"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/165"
)
activitie = res.json() Response
{
"id": 165,
"userId": 46,
"verb": "updated",
"targetType": "product",
"targetId": 114,
"createdAt": "2025-12-15T09:02:28.351Z"
}