Activity #654
User #202 updated product #66
10/11/2025, 8:08:09 AM
Overview
activities / #654
User #202 updated product #66
10/11/2025, 8:08:09 AM
User #202 updated product #66
10/11/2025, 8:08:09 AM
View recordUser #202 updated product #66 · 10/11/2025, 8:08:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/654" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/654" ); 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/654"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/654"
)
activitie = res.json() Response
{
"id": 654,
"userId": 202,
"verb": "updated",
"targetType": "product",
"targetId": 66,
"createdAt": "2025-10-11T08:08:09.732Z"
}