Activity #442
User #59 mention Leonel Hamill mentioned you in a post
11/14/2025, 3:43:17 PM
Overview
notifications / #442
User #59 mention Leonel Hamill mentioned you in a post
11/14/2025, 3:43:17 PM
User #59 mention Leonel Hamill mentioned you in a post
11/14/2025, 3:43:17 PM
View recordUser #59 mention Leonel Hamill mentioned you in a post · 11/14/2025, 3:43:17 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/442" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/442" ); 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/442"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/442"
)
notification = res.json() Response
{
"id": 442,
"userId": 59,
"type": "mention",
"title": "Leonel Hamill mentioned you in a post",
"body": "Velut damnatio capillus ultra.",
"isRead": false,
"link": "https://example.com/mention/pZfl1pES",
"createdAt": "2025-11-14T15:43:17.684Z"
}