Activity #1767
User #94 commented restaurant #26
3/19/2026, 7:19:09 PM
Overview
activities / #1767
User #94 commented restaurant #26
3/19/2026, 7:19:09 PM
User #94 commented restaurant #26
3/19/2026, 7:19:09 PM
View recordUser #94 commented restaurant #26 · 3/19/2026, 7:19:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1767" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1767" ); 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/1767"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1767"
)
activitie = res.json() Response
{
"id": 1767,
"userId": 94,
"verb": "commented",
"targetType": "restaurant",
"targetId": 26,
"createdAt": "2026-03-19T19:19:09.070Z"
}