Activity #144
User #211 mention Leonel Hamill mentioned you in a post
9/17/2025, 6:04:36 PM
Overview
notifications / #144
User #211 mention Leonel Hamill mentioned you in a post
9/17/2025, 6:04:36 PM
User #211 mention Leonel Hamill mentioned you in a post
9/17/2025, 6:04:36 PM
View recordUser #211 mention Leonel Hamill mentioned you in a post · 9/17/2025, 6:04:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/144" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/144" ); 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/144"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/144"
)
notification = res.json() Response
{
"id": 144,
"userId": 211,
"type": "mention",
"title": "Leonel Hamill mentioned you in a post",
"body": "Admoveo summopere quisquam reiciendis unus.",
"isRead": true,
"link": null,
"createdAt": "2025-09-17T18:04:36.530Z"
}