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