Activity #1867
User #199 commented restaurant #65
7/29/2025, 9:17:09 PM
Overview
activities / #1867
User #199 commented restaurant #65
7/29/2025, 9:17:09 PM
User #199 commented restaurant #65
7/29/2025, 9:17:09 PM
View recordUser #199 commented restaurant #65 · 7/29/2025, 9:17:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1867" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1867" ); 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/1867"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1867"
)
activitie = res.json() Response
{
"id": 1867,
"userId": 199,
"verb": "commented",
"targetType": "restaurant",
"targetId": 65,
"createdAt": "2025-07-29T21:17:09.461Z"
}