Activity #1995
User #169 commented restaurant #20
11/22/2025, 7:11:35 PM
Overview
activities / #1995
User #169 commented restaurant #20
11/22/2025, 7:11:35 PM
User #169 commented restaurant #20
11/22/2025, 7:11:35 PM
View recordUser #169 commented restaurant #20 · 11/22/2025, 7:11:35 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1995" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1995" ); 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/1995"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1995"
)
activitie = res.json() Response
{
"id": 1995,
"userId": 169,
"verb": "commented",
"targetType": "restaurant",
"targetId": 20,
"createdAt": "2025-11-22T19:11:35.707Z"
}