Activity #1230
User #29 mention Dasia Volkman mentioned you in a post
5/13/2026, 4:09:56 PM
Overview
notifications / #1230
User #29 mention Dasia Volkman mentioned you in a post
5/13/2026, 4:09:56 PM
User #29 mention Dasia Volkman mentioned you in a post
5/13/2026, 4:09:56 PM
View recordUser #29 mention Dasia Volkman mentioned you in a post · 5/13/2026, 4:09:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1230" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1230" ); 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/1230"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1230"
)
notification = res.json() Response
{
"id": 1230,
"userId": 29,
"type": "mention",
"title": "Dasia Volkman mentioned you in a post",
"body": "Coaegresco conscendo sortitus bis valde delego earum tremo crustulum.",
"isRead": false,
"link": "https://example.com/mention/DyT8G1C-",
"createdAt": "2026-05-13T16:09:56.440Z"
}