Activity #1401
User #119 mention Karolann Legros mentioned you in a post
11/16/2025, 12:45:25 PM
Overview
notifications / #1401
User #119 mention Karolann Legros mentioned you in a post
11/16/2025, 12:45:25 PM
User #119 mention Karolann Legros mentioned you in a post
11/16/2025, 12:45:25 PM
View recordUser #119 mention Karolann Legros mentioned you in a post · 11/16/2025, 12:45:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1401" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1401" ); 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/1401"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1401"
)
notification = res.json() Response
{
"id": 1401,
"userId": 119,
"type": "mention",
"title": "Karolann Legros mentioned you in a post",
"body": "Delego stipes vacuus pectus supra conicio.",
"isRead": false,
"link": null,
"createdAt": "2025-11-16T12:45:25.006Z"
}