Activity #1865
User #111 mention Rubye Emmerich mentioned you in a post
12/6/2025, 8:10:20 PM
Overview
notifications / #1865
User #111 mention Rubye Emmerich mentioned you in a post
12/6/2025, 8:10:20 PM
User #111 mention Rubye Emmerich mentioned you in a post
12/6/2025, 8:10:20 PM
View recordUser #111 mention Rubye Emmerich mentioned you in a post · 12/6/2025, 8:10:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1865" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1865" ); 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/1865"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1865"
)
notification = res.json() Response
{
"id": 1865,
"userId": 111,
"type": "mention",
"title": "Rubye Emmerich mentioned you in a post",
"body": "Tempora facilis crustulum caterva.",
"isRead": true,
"link": "https://example.com/mention/P8tv3jae",
"createdAt": "2025-12-06T20:10:20.154Z"
}