Activity #751
User #210 shared product #134
8/17/2025, 7:59:10 PM
Overview
activities / #751
User #210 shared product #134
8/17/2025, 7:59:10 PM
User #210 shared product #134
8/17/2025, 7:59:10 PM
View recordUser #210 shared product #134 · 8/17/2025, 7:59:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/751" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/751" ); 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/751"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/751"
)
activitie = res.json() Response
{
"id": 751,
"userId": 210,
"verb": "shared",
"targetType": "product",
"targetId": 134,
"createdAt": "2025-08-17T19:59:10.319Z"
}