Activity #261
User #6 updated product #159
8/9/2025, 12:57:29 PM
Overview
activities / #261
User #6 updated product #159
8/9/2025, 12:57:29 PM
User #6 updated product #159
8/9/2025, 12:57:29 PM
View recordUser #6 updated product #159 · 8/9/2025, 12:57:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/261" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/261" ); 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/261"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/261"
)
activitie = res.json() Response
{
"id": 261,
"userId": 6,
"verb": "updated",
"targetType": "product",
"targetId": 159,
"createdAt": "2025-08-09T12:57:29.052Z"
}