Activity #1269
User #106 mention Talon Turner mentioned you in a post
2/9/2026, 5:07:44 AM
Overview
notifications / #1269
User #106 mention Talon Turner mentioned you in a post
2/9/2026, 5:07:44 AM
User #106 mention Talon Turner mentioned you in a post
2/9/2026, 5:07:44 AM
View recordUser #106 mention Talon Turner mentioned you in a post · 2/9/2026, 5:07:44 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1269" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1269" ); 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/1269"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1269"
)
notification = res.json() Response
{
"id": 1269,
"userId": 106,
"type": "mention",
"title": "Talon Turner mentioned you in a post",
"body": "Tendo convoco vitium absens xiphias demulceo argentum victoria contigo ubi.",
"isRead": true,
"link": null,
"createdAt": "2026-02-09T05:07:44.835Z"
}