Activity #2794
User #5 updated product #50
7/25/2025, 10:44:02 PM
Overview
activities / #2794
User #5 updated product #50
7/25/2025, 10:44:02 PM
User #5 updated product #50
7/25/2025, 10:44:02 PM
View recordUser #5 updated product #50 · 7/25/2025, 10:44:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/2794" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/2794" ); 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/2794"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/2794"
)
activitie = res.json() Response
{
"id": 2794,
"userId": 5,
"verb": "updated",
"targetType": "product",
"targetId": 50,
"createdAt": "2025-07-25T22:44:02.814Z"
}