Activity #1780
User #40 created product #187
2/9/2026, 11:42:58 PM
Overview
activities / #1780
User #40 created product #187
2/9/2026, 11:42:58 PM
User #40 created product #187
2/9/2026, 11:42:58 PM
View recordUser #40 created product #187 · 2/9/2026, 11:42:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1780" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1780" ); 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/1780"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1780"
)
activitie = res.json() Response
{
"id": 1780,
"userId": 40,
"verb": "created",
"targetType": "product",
"targetId": 187,
"createdAt": "2026-02-09T23:42:58.496Z"
}