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