Activity #734
User #181 updated restaurant #64
5/6/2026, 5:11:20 PM
Overview
activities / #734
User #181 updated restaurant #64
5/6/2026, 5:11:20 PM
User #181 updated restaurant #64
5/6/2026, 5:11:20 PM
View recordUser #181 updated restaurant #64 · 5/6/2026, 5:11:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/734" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/734" ); 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/734"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/734"
)
activitie = res.json() Response
{
"id": 734,
"userId": 181,
"verb": "updated",
"targetType": "restaurant",
"targetId": 64,
"createdAt": "2026-05-06T17:11:20.535Z"
}