Activity #583
User #81 mention Alanna Kilback mentioned you in a post
1/7/2026, 8:33:25 AM
Overview
notifications / #583
User #81 mention Alanna Kilback mentioned you in a post
1/7/2026, 8:33:25 AM
User #81 mention Alanna Kilback mentioned you in a post
1/7/2026, 8:33:25 AM
View recordUser #81 mention Alanna Kilback mentioned you in a post · 1/7/2026, 8:33:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/583" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/583" ); 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/583"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/583"
)
notification = res.json() Response
{
"id": 583,
"userId": 81,
"type": "mention",
"title": "Alanna Kilback mentioned you in a post",
"body": "Cultellus atqui inventore universe vito admitto caecus cedo aut ullus.",
"isRead": true,
"link": "https://example.com/mention/mVka718Z",
"createdAt": "2026-01-07T08:33:25.427Z"
}