Activity #93
User #205 commented restaurant #10
2/16/2026, 7:01:41 PM
Overview
activities / #93
User #205 commented restaurant #10
2/16/2026, 7:01:41 PM
User #205 commented restaurant #10
2/16/2026, 7:01:41 PM
View recordUser #205 commented restaurant #10 · 2/16/2026, 7:01:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/93" ); 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/93"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/93"
)
activitie = res.json() Response
{
"id": 93,
"userId": 205,
"verb": "commented",
"targetType": "restaurant",
"targetId": 10,
"createdAt": "2026-02-16T19:01:41.954Z"
}