Activity #1917
User #222 updated restaurant #35
11/9/2025, 8:52:29 PM
Overview
activities / #1917
User #222 updated restaurant #35
11/9/2025, 8:52:29 PM
User #222 updated restaurant #35
11/9/2025, 8:52:29 PM
View recordUser #222 updated restaurant #35 · 11/9/2025, 8:52:29 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1917" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1917" ); 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/1917"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1917"
)
activitie = res.json() Response
{
"id": 1917,
"userId": 222,
"verb": "updated",
"targetType": "restaurant",
"targetId": 35,
"createdAt": "2025-11-09T20:52:29.429Z"
}