Activity #112
User #18 mention Celia D'Amore mentioned you in a post
9/27/2025, 10:04:03 PM
Overview
notifications / #112
User #18 mention Celia D'Amore mentioned you in a post
9/27/2025, 10:04:03 PM
User #18 mention Celia D'Amore mentioned you in a post
9/27/2025, 10:04:03 PM
View recordUser #18 mention Celia D'Amore mentioned you in a post · 9/27/2025, 10:04:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/112" ); 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/112"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/112"
)
notification = res.json() Response
{
"id": 112,
"userId": 18,
"type": "mention",
"title": "Celia D'Amore mentioned you in a post",
"body": "Cubicularis attonbitus cauda.",
"isRead": true,
"link": "https://example.com/mention/6aGNW0U_",
"createdAt": "2025-09-27T22:04:03.705Z"
}