Activity #2600
User #123 commented restaurant #53
8/22/2025, 1:30:53 PM
Overview
activities / #2600
User #123 commented restaurant #53
8/22/2025, 1:30:53 PM
User #123 commented restaurant #53
8/22/2025, 1:30:53 PM
View recordUser #123 commented restaurant #53 · 8/22/2025, 1:30:53 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2600" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2600" ); 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/2600"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2600"
)
activitie = res.json() Response
{
"id": 2600,
"userId": 123,
"verb": "commented",
"targetType": "restaurant",
"targetId": 53,
"createdAt": "2025-08-22T13:30:53.549Z"
}