Activity #969
User #116 mention Lamont Schroeder mentioned you in a post
11/26/2025, 4:10:59 PM
Overview
notifications / #969
User #116 mention Lamont Schroeder mentioned you in a post
11/26/2025, 4:10:59 PM
User #116 mention Lamont Schroeder mentioned you in a post
11/26/2025, 4:10:59 PM
View recordUser #116 mention Lamont Schroeder mentioned you in a post · 11/26/2025, 4:10:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/969" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/969" ); 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/969"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/969"
)
notification = res.json() Response
{
"id": 969,
"userId": 116,
"type": "mention",
"title": "Lamont Schroeder mentioned you in a post",
"body": "Adinventitias suscipit dolor substantia torqueo sperno attonbitus curtus suppono totidem.",
"isRead": false,
"link": null,
"createdAt": "2025-11-26T16:10:59.021Z"
}