Activity #1509
User #20 shared product #170
3/6/2026, 12:04:09 PM
Overview
activities / #1509
User #20 shared product #170
3/6/2026, 12:04:09 PM
User #20 shared product #170
3/6/2026, 12:04:09 PM
View recordUser #20 shared product #170 · 3/6/2026, 12:04:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1509" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1509" ); 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/1509"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1509"
)
activitie = res.json() Response
{
"id": 1509,
"userId": 20,
"verb": "shared",
"targetType": "product",
"targetId": 170,
"createdAt": "2026-03-06T12:04:09.816Z"
}