Activity #1570
User #93 mention Perry Kerluke mentioned you in a post
11/11/2025, 4:14:19 AM
Overview
notifications / #1570
User #93 mention Perry Kerluke mentioned you in a post
11/11/2025, 4:14:19 AM
User #93 mention Perry Kerluke mentioned you in a post
11/11/2025, 4:14:19 AM
View recordUser #93 mention Perry Kerluke mentioned you in a post · 11/11/2025, 4:14:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1570" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1570" ); 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/1570"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1570"
)
notification = res.json() Response
{
"id": 1570,
"userId": 93,
"type": "mention",
"title": "Perry Kerluke mentioned you in a post",
"body": "Dolorum ulciscor alii tubineus.",
"isRead": false,
"link": null,
"createdAt": "2025-11-11T04:14:19.317Z"
}