Activity #2741
User #191 created restaurant #81
1/25/2026, 5:45:35 AM
Overview
activities / #2741
User #191 created restaurant #81
1/25/2026, 5:45:35 AM
User #191 created restaurant #81
1/25/2026, 5:45:35 AM
View recordUser #191 created restaurant #81 · 1/25/2026, 5:45:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2741" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2741" ); 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/2741"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2741"
)
activitie = res.json() Response
{
"id": 2741,
"userId": 191,
"verb": "created",
"targetType": "restaurant",
"targetId": 81,
"createdAt": "2026-01-25T05:45:35.862Z"
}