Activity #1626
User #33 mention Velma Jerde mentioned you in a post
5/5/2026, 10:44:09 AM
Overview
notifications / #1626
User #33 mention Velma Jerde mentioned you in a post
5/5/2026, 10:44:09 AM
User #33 mention Velma Jerde mentioned you in a post
5/5/2026, 10:44:09 AM
View recordUser #33 mention Velma Jerde mentioned you in a post · 5/5/2026, 10:44:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1626" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1626" ); 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/1626"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1626"
)
notification = res.json() Response
{
"id": 1626,
"userId": 33,
"type": "mention",
"title": "Velma Jerde mentioned you in a post",
"body": "Arma voveo charisma cuppedia denique acceptus fugit abduco.",
"isRead": false,
"link": null,
"createdAt": "2026-05-05T10:44:09.551Z"
}