Activity #421
User #38 shared product #35
7/12/2025, 2:54:21 AM
Overview
activities / #421
User #38 shared product #35
7/12/2025, 2:54:21 AM
User #38 shared product #35
7/12/2025, 2:54:21 AM
View recordUser #38 shared product #35 · 7/12/2025, 2:54:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/421" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/421" ); 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/421"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/421"
)
activitie = res.json() Response
{
"id": 421,
"userId": 38,
"verb": "shared",
"targetType": "product",
"targetId": 35,
"createdAt": "2025-07-12T02:54:21.640Z"
}