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