Activity #2538
User #207 commented restaurant #52
4/1/2026, 10:31:12 AM
Overview
activities / #2538
User #207 commented restaurant #52
4/1/2026, 10:31:12 AM
User #207 commented restaurant #52
4/1/2026, 10:31:12 AM
View recordUser #207 commented restaurant #52 · 4/1/2026, 10:31:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2538" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2538" ); 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/2538"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2538"
)
activitie = res.json() Response
{
"id": 2538,
"userId": 207,
"verb": "commented",
"targetType": "restaurant",
"targetId": 52,
"createdAt": "2026-04-01T10:31:12.849Z"
}