Activity #205
User #54 mention Izaiah Rempel mentioned you in a post
7/16/2025, 4:06:49 PM
Overview
notifications / #205
User #54 mention Izaiah Rempel mentioned you in a post
7/16/2025, 4:06:49 PM
User #54 mention Izaiah Rempel mentioned you in a post
7/16/2025, 4:06:49 PM
View recordUser #54 mention Izaiah Rempel mentioned you in a post · 7/16/2025, 4:06:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/205" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/205" ); 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/205"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/205"
)
notification = res.json() Response
{
"id": 205,
"userId": 54,
"type": "mention",
"title": "Izaiah Rempel mentioned you in a post",
"body": "Absum valens copiose peccatus.",
"isRead": false,
"link": "https://example.com/mention/CQ-_MSYI",
"createdAt": "2025-07-16T16:06:49.976Z"
}