Activity #339
User #33 follow Merl Jenkins started following you
1/12/2026, 11:44:34 PM
Overview
notifications / #339
User #33 follow Merl Jenkins started following you
1/12/2026, 11:44:34 PM
User #33 follow Merl Jenkins started following you
1/12/2026, 11:44:34 PM
View recordUser #33 follow Merl Jenkins started following you · 1/12/2026, 11:44:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/339" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/339" ); const notification = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/notifications.d.ts https://example-data.com/types/notifications.d.ts
import type { Notification } from "./types/notifications";
const res = await fetch(
"https://example-data.com/api/v1/notifications/339"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/339"
)
notification = res.json() Response
{
"id": 339,
"userId": 33,
"type": "follow",
"title": "Merl Jenkins started following you",
"body": "Turpis id attonbitus vorax.",
"isRead": false,
"link": null,
"createdAt": "2026-01-12T23:44:34.664Z"
}