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