Activity #769
User #195 mention Douglas Frami mentioned you in a post
1/26/2026, 1:30:16 PM
Overview
notifications / #769
User #195 mention Douglas Frami mentioned you in a post
1/26/2026, 1:30:16 PM
User #195 mention Douglas Frami mentioned you in a post
1/26/2026, 1:30:16 PM
View recordUser #195 mention Douglas Frami mentioned you in a post · 1/26/2026, 1:30:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/769" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/769" ); 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/769"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/769"
)
notification = res.json() Response
{
"id": 769,
"userId": 195,
"type": "mention",
"title": "Douglas Frami mentioned you in a post",
"body": "Itaque verus copia cedo circumvenio tubineus bene.",
"isRead": false,
"link": null,
"createdAt": "2026-01-26T13:30:16.573Z"
}