Activity #1157
User #107 updated product #186
4/21/2026, 3:07:52 PM
Overview
activities / #1157
User #107 updated product #186
4/21/2026, 3:07:52 PM
User #107 updated product #186
4/21/2026, 3:07:52 PM
View recordUser #107 updated product #186 · 4/21/2026, 3:07:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1157" ); 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/1157"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1157"
)
activitie = res.json() Response
{
"id": 1157,
"userId": 107,
"verb": "updated",
"targetType": "product",
"targetId": 186,
"createdAt": "2026-04-21T15:07:52.695Z"
}