Activity #1841
User #199 mention Anne Hamill mentioned you in a post
7/13/2025, 4:47:39 PM
Overview
notifications / #1841
User #199 mention Anne Hamill mentioned you in a post
7/13/2025, 4:47:39 PM
User #199 mention Anne Hamill mentioned you in a post
7/13/2025, 4:47:39 PM
View recordUser #199 mention Anne Hamill mentioned you in a post · 7/13/2025, 4:47:39 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1841" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1841" ); 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/1841"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1841"
)
notification = res.json() Response
{
"id": 1841,
"userId": 199,
"type": "mention",
"title": "Anne Hamill mentioned you in a post",
"body": "Magnam uredo summopere autem accusator utilis reprehenderit.",
"isRead": true,
"link": "https://example.com/mention/7YV9kBDT",
"createdAt": "2025-07-13T16:47:39.658Z"
}