Activity #991
User #205 mention Marlin Goldner mentioned you in a post
9/12/2025, 12:24:30 PM
Overview
notifications / #991
User #205 mention Marlin Goldner mentioned you in a post
9/12/2025, 12:24:30 PM
User #205 mention Marlin Goldner mentioned you in a post
9/12/2025, 12:24:30 PM
View recordUser #205 mention Marlin Goldner mentioned you in a post · 9/12/2025, 12:24:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/991" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/991" ); 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/991"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/991"
)
notification = res.json() Response
{
"id": 991,
"userId": 205,
"type": "mention",
"title": "Marlin Goldner mentioned you in a post",
"body": "Conitor consequatur sponte tamquam.",
"isRead": false,
"link": "https://example.com/mention/Gm1ivqPi",
"createdAt": "2025-09-12T12:24:30.808Z"
}