Activity #1021
User #67 mention Rosemary Krajcik mentioned you in a post
9/14/2025, 10:38:26 AM
Overview
notifications / #1021
User #67 mention Rosemary Krajcik mentioned you in a post
9/14/2025, 10:38:26 AM
User #67 mention Rosemary Krajcik mentioned you in a post
9/14/2025, 10:38:26 AM
View recordUser #67 mention Rosemary Krajcik mentioned you in a post · 9/14/2025, 10:38:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1021" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1021" ); 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/1021"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1021"
)
notification = res.json() Response
{
"id": 1021,
"userId": 67,
"type": "mention",
"title": "Rosemary Krajcik mentioned you in a post",
"body": "Decerno tonsor curso tredecim auxilium stella voco quae.",
"isRead": true,
"link": "https://example.com/mention/4rB0VTb0",
"createdAt": "2025-09-14T10:38:26.767Z"
}