Activity #1255
User #220 updated product #194
4/29/2026, 6:51:15 AM
Overview
activities / #1255
User #220 updated product #194
4/29/2026, 6:51:15 AM
User #220 updated product #194
4/29/2026, 6:51:15 AM
View recordUser #220 updated product #194 · 4/29/2026, 6:51:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1255" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1255" ); 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/1255"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1255"
)
activitie = res.json() Response
{
"id": 1255,
"userId": 220,
"verb": "updated",
"targetType": "product",
"targetId": 194,
"createdAt": "2026-04-29T06:51:15.203Z"
}