Activity #1344
User #65 created restaurant #83
4/23/2026, 6:27:58 AM
Overview
activities / #1344
User #65 created restaurant #83
4/23/2026, 6:27:58 AM
User #65 created restaurant #83
4/23/2026, 6:27:58 AM
View recordUser #65 created restaurant #83 · 4/23/2026, 6:27:58 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1344" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1344" ); 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/1344"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1344"
)
activitie = res.json() Response
{
"id": 1344,
"userId": 65,
"verb": "created",
"targetType": "restaurant",
"targetId": 83,
"createdAt": "2026-04-23T06:27:58.255Z"
}