Activity #276
User #154 shared restaurant #3
3/20/2026, 8:26:33 PM
Overview
activities / #276
User #154 shared restaurant #3
3/20/2026, 8:26:33 PM
User #154 shared restaurant #3
3/20/2026, 8:26:33 PM
View recordUser #154 shared restaurant #3 · 3/20/2026, 8:26:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/276" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/276" ); 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/276"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/276"
)
activitie = res.json() Response
{
"id": 276,
"userId": 154,
"verb": "shared",
"targetType": "restaurant",
"targetId": 3,
"createdAt": "2026-03-20T20:26:33.408Z"
}