Activity #895
User #183 created restaurant #97
11/27/2025, 4:36:02 AM
Overview
activities / #895
User #183 created restaurant #97
11/27/2025, 4:36:02 AM
User #183 created restaurant #97
11/27/2025, 4:36:02 AM
View recordUser #183 created restaurant #97 · 11/27/2025, 4:36:02 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/895" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/895" ); 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/895"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/895"
)
activitie = res.json() Response
{
"id": 895,
"userId": 183,
"verb": "created",
"targetType": "restaurant",
"targetId": 97,
"createdAt": "2025-11-27T04:36:02.508Z"
}