Activity #877
User #21 updated product #43
8/14/2025, 11:28:31 PM
Overview
activities / #877
User #21 updated product #43
8/14/2025, 11:28:31 PM
User #21 updated product #43
8/14/2025, 11:28:31 PM
View recordUser #21 updated product #43 · 8/14/2025, 11:28:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/877" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/877" ); 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/877"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/877"
)
activitie = res.json() Response
{
"id": 877,
"userId": 21,
"verb": "updated",
"targetType": "product",
"targetId": 43,
"createdAt": "2025-08-14T23:28:31.954Z"
}