Activity #1605
User #177 created restaurant #13
3/16/2026, 10:58:31 AM
Overview
activities / #1605
User #177 created restaurant #13
3/16/2026, 10:58:31 AM
User #177 created restaurant #13
3/16/2026, 10:58:31 AM
View recordUser #177 created restaurant #13 · 3/16/2026, 10:58:31 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1605" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1605" ); 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/1605"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1605"
)
activitie = res.json() Response
{
"id": 1605,
"userId": 177,
"verb": "created",
"targetType": "restaurant",
"targetId": 13,
"createdAt": "2026-03-16T10:58:31.146Z"
}