Activity #2534
User #211 commented product #111
10/15/2025, 10:31:47 PM
Overview
activities / #2534
User #211 commented product #111
10/15/2025, 10:31:47 PM
User #211 commented product #111
10/15/2025, 10:31:47 PM
View recordUser #211 commented product #111 · 10/15/2025, 10:31:47 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2534" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2534" ); 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/2534"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2534"
)
activitie = res.json() Response
{
"id": 2534,
"userId": 211,
"verb": "commented",
"targetType": "product",
"targetId": 111,
"createdAt": "2025-10-15T22:31:47.823Z"
}