Activity #1345
User #219 mention Webster Skiles mentioned you in a post
3/10/2026, 5:22:00 PM
Overview
notifications / #1345
User #219 mention Webster Skiles mentioned you in a post
3/10/2026, 5:22:00 PM
User #219 mention Webster Skiles mentioned you in a post
3/10/2026, 5:22:00 PM
View recordUser #219 mention Webster Skiles mentioned you in a post · 3/10/2026, 5:22:00 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1345" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1345" ); 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/1345"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1345"
)
notification = res.json() Response
{
"id": 1345,
"userId": 219,
"type": "mention",
"title": "Webster Skiles mentioned you in a post",
"body": "Summisse depopulo quaerat ambulo coaegresco vinco.",
"isRead": false,
"link": null,
"createdAt": "2026-03-10T17:22:00.135Z"
}