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