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