Activity #2164
User #50 commented restaurant #53
12/28/2025, 5:03:26 AM
Overview
activities / #2164
User #50 commented restaurant #53
12/28/2025, 5:03:26 AM
User #50 commented restaurant #53
12/28/2025, 5:03:26 AM
View recordUser #50 commented restaurant #53 · 12/28/2025, 5:03:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2164" ); 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/2164"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2164"
)
activitie = res.json() Response
{
"id": 2164,
"userId": 50,
"verb": "commented",
"targetType": "restaurant",
"targetId": 53,
"createdAt": "2025-12-28T05:03:26.663Z"
}