Activity #788
User #47 mention Telly Sanford mentioned you in a post
8/22/2025, 4:06:14 AM
Overview
notifications / #788
User #47 mention Telly Sanford mentioned you in a post
8/22/2025, 4:06:14 AM
User #47 mention Telly Sanford mentioned you in a post
8/22/2025, 4:06:14 AM
View recordUser #47 mention Telly Sanford mentioned you in a post · 8/22/2025, 4:06:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/788" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/788" ); 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/788"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/788"
)
notification = res.json() Response
{
"id": 788,
"userId": 47,
"type": "mention",
"title": "Telly Sanford mentioned you in a post",
"body": "Patior tutamen abeo caelestis sonitus sopor.",
"isRead": true,
"link": "https://example.com/mention/23-eEd1c",
"createdAt": "2025-08-22T04:06:14.559Z"
}