Activity #2601
User #194 shared restaurant #80
7/1/2025, 7:51:54 PM
Overview
activities / #2601
User #194 shared restaurant #80
7/1/2025, 7:51:54 PM
User #194 shared restaurant #80
7/1/2025, 7:51:54 PM
View recordUser #194 shared restaurant #80 · 7/1/2025, 7:51:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2601" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2601" ); 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/2601"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2601"
)
activitie = res.json() Response
{
"id": 2601,
"userId": 194,
"verb": "shared",
"targetType": "restaurant",
"targetId": 80,
"createdAt": "2025-07-01T19:51:54.508Z"
}