Activity #1717
User #61 commented restaurant #43
10/9/2025, 3:50:55 PM
Overview
activities / #1717
User #61 commented restaurant #43
10/9/2025, 3:50:55 PM
User #61 commented restaurant #43
10/9/2025, 3:50:55 PM
View recordUser #61 commented restaurant #43 · 10/9/2025, 3:50:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1717" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1717" ); 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/1717"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1717"
)
activitie = res.json() Response
{
"id": 1717,
"userId": 61,
"verb": "commented",
"targetType": "restaurant",
"targetId": 43,
"createdAt": "2025-10-09T15:50:55.165Z"
}