Activity #1341
User #149 mention Jacynthe Sawayn mentioned you in a post
6/11/2025, 3:30:43 AM
Overview
notifications / #1341
User #149 mention Jacynthe Sawayn mentioned you in a post
6/11/2025, 3:30:43 AM
User #149 mention Jacynthe Sawayn mentioned you in a post
6/11/2025, 3:30:43 AM
View recordUser #149 mention Jacynthe Sawayn mentioned you in a post · 6/11/2025, 3:30:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1341" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1341" ); 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/1341"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1341"
)
notification = res.json() Response
{
"id": 1341,
"userId": 149,
"type": "mention",
"title": "Jacynthe Sawayn mentioned you in a post",
"body": "Argentum aufero ulterius comburo quod degusto tamquam sequi certus.",
"isRead": false,
"link": "https://example.com/mention/SwS0uCsL",
"createdAt": "2025-06-11T03:30:43.660Z"
}