Activity #82
User #150 commented restaurant #99
1/30/2026, 9:16:38 AM
Overview
activities / #82
User #150 commented restaurant #99
1/30/2026, 9:16:38 AM
User #150 commented restaurant #99
1/30/2026, 9:16:38 AM
View recordUser #150 commented restaurant #99 · 1/30/2026, 9:16:38 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/82" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/82" ); 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/82"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/82"
)
activitie = res.json() Response
{
"id": 82,
"userId": 150,
"verb": "commented",
"targetType": "restaurant",
"targetId": 99,
"createdAt": "2026-01-30T09:16:38.646Z"
}