Activity #1090
User #78 mention Anne Hamill mentioned you in a post
4/6/2026, 6:13:08 PM
Overview
notifications / #1090
User #78 mention Anne Hamill mentioned you in a post
4/6/2026, 6:13:08 PM
User #78 mention Anne Hamill mentioned you in a post
4/6/2026, 6:13:08 PM
View recordUser #78 mention Anne Hamill mentioned you in a post · 4/6/2026, 6:13:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1090" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1090" ); 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/1090"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1090"
)
notification = res.json() Response
{
"id": 1090,
"userId": 78,
"type": "mention",
"title": "Anne Hamill mentioned you in a post",
"body": "Soleo tametsi vado utrimque comitatus.",
"isRead": false,
"link": "https://example.com/mention/LiYb9hUs",
"createdAt": "2026-04-06T18:13:08.775Z"
}