Activity #284
User #78 commented restaurant #27
9/13/2025, 7:43:01 AM
Overview
activities / #284
User #78 commented restaurant #27
9/13/2025, 7:43:01 AM
User #78 commented restaurant #27
9/13/2025, 7:43:01 AM
View recordUser #78 commented restaurant #27 · 9/13/2025, 7:43:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/284" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/284" ); 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/284"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/284"
)
activitie = res.json() Response
{
"id": 284,
"userId": 78,
"verb": "commented",
"targetType": "restaurant",
"targetId": 27,
"createdAt": "2025-09-13T07:43:01.655Z"
}