Activity #2526
User #120 commented product #125
5/11/2026, 8:58:06 AM
Overview
activities / #2526
User #120 commented product #125
5/11/2026, 8:58:06 AM
User #120 commented product #125
5/11/2026, 8:58:06 AM
View recordUser #120 commented product #125 · 5/11/2026, 8:58:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2526" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2526" ); 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/2526"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2526"
)
activitie = res.json() Response
{
"id": 2526,
"userId": 120,
"verb": "commented",
"targetType": "product",
"targetId": 125,
"createdAt": "2026-05-11T08:58:06.973Z"
}