Activity #1907
User #231 mention Minerva Hettinger mentioned you in a post
3/12/2026, 6:56:00 PM
Overview
notifications / #1907
User #231 mention Minerva Hettinger mentioned you in a post
3/12/2026, 6:56:00 PM
User #231 mention Minerva Hettinger mentioned you in a post
3/12/2026, 6:56:00 PM
View recordUser #231 mention Minerva Hettinger mentioned you in a post · 3/12/2026, 6:56:00 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1907" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1907" ); 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/1907"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1907"
)
notification = res.json() Response
{
"id": 1907,
"userId": 231,
"type": "mention",
"title": "Minerva Hettinger mentioned you in a post",
"body": "Contabesco terebro degusto tum bos dolores carpo solitudo surgo.",
"isRead": true,
"link": "https://example.com/mention/8LP8GQJn",
"createdAt": "2026-03-12T18:56:00.101Z"
}