Activity #1888
User #72 mention Telly Sanford mentioned you in a post
7/13/2025, 4:47:02 PM
Overview
notifications / #1888
User #72 mention Telly Sanford mentioned you in a post
7/13/2025, 4:47:02 PM
User #72 mention Telly Sanford mentioned you in a post
7/13/2025, 4:47:02 PM
View recordUser #72 mention Telly Sanford mentioned you in a post · 7/13/2025, 4:47:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1888" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1888" ); 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/1888"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1888"
)
notification = res.json() Response
{
"id": 1888,
"userId": 72,
"type": "mention",
"title": "Telly Sanford mentioned you in a post",
"body": "Caecus votum caecus pecto voluptas cunabula.",
"isRead": false,
"link": "https://example.com/mention/9W8gK8OG",
"createdAt": "2025-07-13T16:47:02.513Z"
}