Activity #1408
User #147 mention Clyde Bernier-Gleason mentioned you in a post
6/3/2025, 5:56:01 AM
Overview
notifications / #1408
User #147 mention Clyde Bernier-Gleason mentioned you in a post
6/3/2025, 5:56:01 AM
User #147 mention Clyde Bernier-Gleason mentioned you in a post
6/3/2025, 5:56:01 AM
View recordUser #147 mention Clyde Bernier-Gleason mentioned you in a post · 6/3/2025, 5:56:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1408" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1408" ); 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/1408"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1408"
)
notification = res.json() Response
{
"id": 1408,
"userId": 147,
"type": "mention",
"title": "Clyde Bernier-Gleason mentioned you in a post",
"body": "Toties arx caput votum acervus atavus tenus cimentarius.",
"isRead": false,
"link": "https://example.com/mention/-B3tlGQa",
"createdAt": "2025-06-03T05:56:01.492Z"
}