Activity #1700
User #38 created restaurant #30
9/19/2025, 9:25:27 AM
Overview
activities / #1700
User #38 created restaurant #30
9/19/2025, 9:25:27 AM
User #38 created restaurant #30
9/19/2025, 9:25:27 AM
View recordUser #38 created restaurant #30 · 9/19/2025, 9:25:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1700" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1700" ); 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/1700"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1700"
)
activitie = res.json() Response
{
"id": 1700,
"userId": 38,
"verb": "created",
"targetType": "restaurant",
"targetId": 30,
"createdAt": "2025-09-19T09:25:27.039Z"
}