Activity #785
User #206 mention Maria Senger mentioned you in a post
8/20/2025, 1:06:20 PM
Overview
notifications / #785
User #206 mention Maria Senger mentioned you in a post
8/20/2025, 1:06:20 PM
User #206 mention Maria Senger mentioned you in a post
8/20/2025, 1:06:20 PM
View recordUser #206 mention Maria Senger mentioned you in a post · 8/20/2025, 1:06:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/785" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/785" ); 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/785"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/785"
)
notification = res.json() Response
{
"id": 785,
"userId": 206,
"type": "mention",
"title": "Maria Senger mentioned you in a post",
"body": "Necessitatibus cohors suffragium creta suppono tamquam cernuus ocer.",
"isRead": false,
"link": "https://example.com/mention/qR7N8kkd",
"createdAt": "2025-08-20T13:06:20.447Z"
}