Activity #910
User #218 updated product #142
2/10/2026, 2:30:02 AM
Overview
activities / #910
User #218 updated product #142
2/10/2026, 2:30:02 AM
User #218 updated product #142
2/10/2026, 2:30:02 AM
View recordUser #218 updated product #142 · 2/10/2026, 2:30:02 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/910" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/910" ); 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/910"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/910"
)
activitie = res.json() Response
{
"id": 910,
"userId": 218,
"verb": "updated",
"targetType": "product",
"targetId": 142,
"createdAt": "2026-02-10T02:30:02.762Z"
}