Activity #1161
User #181 shared product #20
2/11/2026, 11:28:37 AM
Overview
activities / #1161
User #181 shared product #20
2/11/2026, 11:28:37 AM
User #181 shared product #20
2/11/2026, 11:28:37 AM
View recordUser #181 shared product #20 · 2/11/2026, 11:28:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1161" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1161" ); 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/1161"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1161"
)
activitie = res.json() Response
{
"id": 1161,
"userId": 181,
"verb": "shared",
"targetType": "product",
"targetId": 20,
"createdAt": "2026-02-11T11:28:37.482Z"
}