Activity #1248
User #52 mention Della Labadie mentioned you in a post
8/9/2025, 7:29:37 PM
Overview
notifications / #1248
User #52 mention Della Labadie mentioned you in a post
8/9/2025, 7:29:37 PM
User #52 mention Della Labadie mentioned you in a post
8/9/2025, 7:29:37 PM
View recordUser #52 mention Della Labadie mentioned you in a post · 8/9/2025, 7:29:37 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1248" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1248" ); 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/1248"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1248"
)
notification = res.json() Response
{
"id": 1248,
"userId": 52,
"type": "mention",
"title": "Della Labadie mentioned you in a post",
"body": "Natus correptius tandem depono.",
"isRead": true,
"link": "https://example.com/mention/44xOAecD",
"createdAt": "2025-08-09T19:29:37.821Z"
}