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