Activity #407
User #134 shared product #125
1/21/2026, 1:24:16 AM
Overview
activities / #407
User #134 shared product #125
1/21/2026, 1:24:16 AM
User #134 shared product #125
1/21/2026, 1:24:16 AM
View recordUser #134 shared product #125 · 1/21/2026, 1:24:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/407" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/407" ); 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/407"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/407"
)
activitie = res.json() Response
{
"id": 407,
"userId": 134,
"verb": "shared",
"targetType": "product",
"targetId": 125,
"createdAt": "2026-01-21T01:24:16.805Z"
}