Activity #920
User #159 mention Lamont Schroeder mentioned you in a post
10/28/2025, 3:42:07 PM
Overview
notifications / #920
User #159 mention Lamont Schroeder mentioned you in a post
10/28/2025, 3:42:07 PM
User #159 mention Lamont Schroeder mentioned you in a post
10/28/2025, 3:42:07 PM
View recordUser #159 mention Lamont Schroeder mentioned you in a post · 10/28/2025, 3:42:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/920" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/920" ); 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/920"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/920"
)
notification = res.json() Response
{
"id": 920,
"userId": 159,
"type": "mention",
"title": "Lamont Schroeder mentioned you in a post",
"body": "Asperiores uterque tabesco voco amplitudo.",
"isRead": true,
"link": "https://example.com/mention/pVu7yXcF",
"createdAt": "2025-10-28T15:42:07.135Z"
}