Activity #925
User #121 mention Myrtie Daniel mentioned you in a post
4/30/2026, 6:36:15 AM
Overview
notifications / #925
User #121 mention Myrtie Daniel mentioned you in a post
4/30/2026, 6:36:15 AM
User #121 mention Myrtie Daniel mentioned you in a post
4/30/2026, 6:36:15 AM
View recordUser #121 mention Myrtie Daniel mentioned you in a post · 4/30/2026, 6:36:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/925" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/925" ); 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/925"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/925"
)
notification = res.json() Response
{
"id": 925,
"userId": 121,
"type": "mention",
"title": "Myrtie Daniel mentioned you in a post",
"body": "Sollicito alias suffragium autus conicio.",
"isRead": true,
"link": "https://example.com/mention/Ge1503X3",
"createdAt": "2026-04-30T06:36:15.421Z"
}