Activity #809
User #184 commented restaurant #85
12/10/2025, 2:07:54 AM
Overview
activities / #809
User #184 commented restaurant #85
12/10/2025, 2:07:54 AM
User #184 commented restaurant #85
12/10/2025, 2:07:54 AM
View recordUser #184 commented restaurant #85 · 12/10/2025, 2:07:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/809" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/809" ); 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/809"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/809"
)
activitie = res.json() Response
{
"id": 809,
"userId": 184,
"verb": "commented",
"targetType": "restaurant",
"targetId": 85,
"createdAt": "2025-12-10T02:07:54.633Z"
}