Activity #614
User #69 follow Whitney O'Reilly started following you
10/13/2025, 11:10:16 PM
Overview
notifications / #614
User #69 follow Whitney O'Reilly started following you
10/13/2025, 11:10:16 PM
User #69 follow Whitney O'Reilly started following you
10/13/2025, 11:10:16 PM
View recordUser #69 follow Whitney O'Reilly started following you · 10/13/2025, 11:10:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/614" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/614" ); 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/614"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/614"
)
notification = res.json() Response
{
"id": 614,
"userId": 69,
"type": "follow",
"title": "Whitney O'Reilly started following you",
"body": "Censura acidus crinis quas admiratio.",
"isRead": false,
"link": "https://example.com/follow/7rrweqFA",
"createdAt": "2025-10-13T23:10:16.337Z"
}