Activity #212
User #7 mention Lamar Wilkinson mentioned you in a post
2/5/2026, 10:15:41 PM
Overview
notifications / #212
User #7 mention Lamar Wilkinson mentioned you in a post
2/5/2026, 10:15:41 PM
User #7 mention Lamar Wilkinson mentioned you in a post
2/5/2026, 10:15:41 PM
View recordUser #7 mention Lamar Wilkinson mentioned you in a post · 2/5/2026, 10:15:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/212" ); 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/212"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/212"
)
notification = res.json() Response
{
"id": 212,
"userId": 7,
"type": "mention",
"title": "Lamar Wilkinson mentioned you in a post",
"body": "Addo adficio vomito vulgaris.",
"isRead": false,
"link": "https://example.com/mention/bOeRIqEX",
"createdAt": "2026-02-05T22:15:41.452Z"
}