Activity #1880
User #121 mention Vidal Parker mentioned you in a post
8/27/2025, 4:26:09 PM
Overview
notifications / #1880
User #121 mention Vidal Parker mentioned you in a post
8/27/2025, 4:26:09 PM
User #121 mention Vidal Parker mentioned you in a post
8/27/2025, 4:26:09 PM
View recordUser #121 mention Vidal Parker mentioned you in a post · 8/27/2025, 4:26:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1880" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1880" ); 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/1880"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1880"
)
notification = res.json() Response
{
"id": 1880,
"userId": 121,
"type": "mention",
"title": "Vidal Parker mentioned you in a post",
"body": "Carmen adsum utrimque.",
"isRead": true,
"link": "https://example.com/mention/SWpOhuYB",
"createdAt": "2025-08-27T16:26:09.724Z"
}