Activity #2901
User #48 commented restaurant #98
3/10/2026, 4:08:41 PM
Overview
activities / #2901
User #48 commented restaurant #98
3/10/2026, 4:08:41 PM
User #48 commented restaurant #98
3/10/2026, 4:08:41 PM
View recordUser #48 commented restaurant #98 · 3/10/2026, 4:08:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2901" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2901" ); 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/2901"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2901"
)
activitie = res.json() Response
{
"id": 2901,
"userId": 48,
"verb": "commented",
"targetType": "restaurant",
"targetId": 98,
"createdAt": "2026-03-10T16:08:41.688Z"
}