Activity #2004
User #43 shared product #122
10/30/2025, 1:33:52 PM
Overview
activities / #2004
User #43 shared product #122
10/30/2025, 1:33:52 PM
User #43 shared product #122
10/30/2025, 1:33:52 PM
View recordUser #43 shared product #122 · 10/30/2025, 1:33:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2004" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2004" ); 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/2004"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2004"
)
activitie = res.json() Response
{
"id": 2004,
"userId": 43,
"verb": "shared",
"targetType": "product",
"targetId": 122,
"createdAt": "2025-10-30T13:33:52.310Z"
}