Activity #271
User #63 shared restaurant #41
5/10/2026, 7:30:39 PM
Overview
activities / #271
User #63 shared restaurant #41
5/10/2026, 7:30:39 PM
User #63 shared restaurant #41
5/10/2026, 7:30:39 PM
View recordUser #63 shared restaurant #41 · 5/10/2026, 7:30:39 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/271" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/271" ); 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/271"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/271"
)
activitie = res.json() Response
{
"id": 271,
"userId": 63,
"verb": "shared",
"targetType": "restaurant",
"targetId": 41,
"createdAt": "2026-05-10T19:30:39.463Z"
}