Activity #814
User #241 follow Perry Kerluke started following you
2/2/2026, 2:38:26 PM
Overview
notifications / #814
User #241 follow Perry Kerluke started following you
2/2/2026, 2:38:26 PM
User #241 follow Perry Kerluke started following you
2/2/2026, 2:38:26 PM
View recordUser #241 follow Perry Kerluke started following you · 2/2/2026, 2:38:26 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/814" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/814" ); 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/814"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/814"
)
notification = res.json() Response
{
"id": 814,
"userId": 241,
"type": "follow",
"title": "Perry Kerluke started following you",
"body": "Minus admoveo cognomen concido saepe uxor caelestis thermae vulnus demonstro.",
"isRead": true,
"link": null,
"createdAt": "2026-02-02T14:38:26.114Z"
}