Activity #1326
User #210 created restaurant #8
9/1/2025, 6:07:01 AM
Overview
activities / #1326
User #210 created restaurant #8
9/1/2025, 6:07:01 AM
User #210 created restaurant #8
9/1/2025, 6:07:01 AM
View recordUser #210 created restaurant #8 · 9/1/2025, 6:07:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1326" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1326" ); 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/1326"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1326"
)
activitie = res.json() Response
{
"id": 1326,
"userId": 210,
"verb": "created",
"targetType": "restaurant",
"targetId": 8,
"createdAt": "2025-09-01T06:07:01.570Z"
}