Activity #241
User #116 follow Leora Doyle started following you
9/29/2025, 7:20:54 PM
Overview
notifications / #241
User #116 follow Leora Doyle started following you
9/29/2025, 7:20:54 PM
User #116 follow Leora Doyle started following you
9/29/2025, 7:20:54 PM
View recordUser #116 follow Leora Doyle started following you · 9/29/2025, 7:20:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/241" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/241" ); 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/241"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/241"
)
notification = res.json() Response
{
"id": 241,
"userId": 116,
"type": "follow",
"title": "Leora Doyle started following you",
"body": "Supellex carmen campana adsidue voro.",
"isRead": false,
"link": "https://example.com/follow/tCv_56Hl",
"createdAt": "2025-09-29T19:20:54.516Z"
}