Activity #2832
User #94 commented restaurant #18
10/6/2025, 8:51:29 AM
Overview
activities / #2832
User #94 commented restaurant #18
10/6/2025, 8:51:29 AM
User #94 commented restaurant #18
10/6/2025, 8:51:29 AM
View recordUser #94 commented restaurant #18 · 10/6/2025, 8:51:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2832" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2832" ); 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/2832"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2832"
)
activitie = res.json() Response
{
"id": 2832,
"userId": 94,
"verb": "commented",
"targetType": "restaurant",
"targetId": 18,
"createdAt": "2025-10-06T08:51:29.264Z"
}