Activity #2487
User #76 shared restaurant #65
3/6/2026, 2:34:38 AM
Overview
activities / #2487
User #76 shared restaurant #65
3/6/2026, 2:34:38 AM
User #76 shared restaurant #65
3/6/2026, 2:34:38 AM
View recordUser #76 shared restaurant #65 · 3/6/2026, 2:34:38 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2487" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2487" ); 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/2487"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2487"
)
activitie = res.json() Response
{
"id": 2487,
"userId": 76,
"verb": "shared",
"targetType": "restaurant",
"targetId": 65,
"createdAt": "2026-03-06T02:34:38.179Z"
}