Activity #1742
User #215 commented restaurant #41
11/29/2025, 6:08:22 AM
Overview
activities / #1742
User #215 commented restaurant #41
11/29/2025, 6:08:22 AM
User #215 commented restaurant #41
11/29/2025, 6:08:22 AM
View recordUser #215 commented restaurant #41 · 11/29/2025, 6:08:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1742" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1742" ); 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/1742"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1742"
)
activitie = res.json() Response
{
"id": 1742,
"userId": 215,
"verb": "commented",
"targetType": "restaurant",
"targetId": 41,
"createdAt": "2025-11-29T06:08:22.639Z"
}