Activity #1105
User #62 follow Jermain Kshlerin started following you
12/8/2025, 2:36:18 PM
Overview
notifications / #1105
User #62 follow Jermain Kshlerin started following you
12/8/2025, 2:36:18 PM
User #62 follow Jermain Kshlerin started following you
12/8/2025, 2:36:18 PM
View recordUser #62 follow Jermain Kshlerin started following you · 12/8/2025, 2:36:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1105" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1105" ); 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/1105"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1105"
)
notification = res.json() Response
{
"id": 1105,
"userId": 62,
"type": "follow",
"title": "Jermain Kshlerin started following you",
"body": "Crur denego civitas termes amplitudo quo curso civitas usque angulus.",
"isRead": false,
"link": null,
"createdAt": "2025-12-08T14:36:18.254Z"
}