Activity #119
User #60 mention Kevon Dickinson mentioned you in a post
5/20/2026, 5:58:56 AM
Overview
notifications / #119
User #60 mention Kevon Dickinson mentioned you in a post
5/20/2026, 5:58:56 AM
User #60 mention Kevon Dickinson mentioned you in a post
5/20/2026, 5:58:56 AM
View recordUser #60 mention Kevon Dickinson mentioned you in a post · 5/20/2026, 5:58:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/119" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/119" ); 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/119"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/119"
)
notification = res.json() Response
{
"id": 119,
"userId": 60,
"type": "mention",
"title": "Kevon Dickinson mentioned you in a post",
"body": "Numquam aqua sperno tristis unde volaticus bene aggero ad exercitationem.",
"isRead": true,
"link": "https://example.com/mention/vSDsdfOT",
"createdAt": "2026-05-20T05:58:56.898Z"
}