Activity #2418
User #8 shared restaurant #96
4/29/2026, 3:22:32 PM
Overview
activities / #2418
User #8 shared restaurant #96
4/29/2026, 3:22:32 PM
User #8 shared restaurant #96
4/29/2026, 3:22:32 PM
View recordUser #8 shared restaurant #96 · 4/29/2026, 3:22:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2418" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2418" ); 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/2418"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2418"
)
activitie = res.json() Response
{
"id": 2418,
"userId": 8,
"verb": "shared",
"targetType": "restaurant",
"targetId": 96,
"createdAt": "2026-04-29T15:22:32.030Z"
}