Activity #1933
User #107 mention Selina Flatley mentioned you in a post
12/15/2025, 9:23:55 PM
Overview
notifications / #1933
User #107 mention Selina Flatley mentioned you in a post
12/15/2025, 9:23:55 PM
User #107 mention Selina Flatley mentioned you in a post
12/15/2025, 9:23:55 PM
View recordUser #107 mention Selina Flatley mentioned you in a post · 12/15/2025, 9:23:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1933" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1933" ); 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/1933"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1933"
)
notification = res.json() Response
{
"id": 1933,
"userId": 107,
"type": "mention",
"title": "Selina Flatley mentioned you in a post",
"body": "Libero statua adsuesco sortitus thymbra.",
"isRead": true,
"link": null,
"createdAt": "2025-12-15T21:23:55.807Z"
}