Activity #501
User #110 mention Jamal Gerhold mentioned you in a post
8/7/2025, 11:22:13 PM
Overview
notifications / #501
User #110 mention Jamal Gerhold mentioned you in a post
8/7/2025, 11:22:13 PM
User #110 mention Jamal Gerhold mentioned you in a post
8/7/2025, 11:22:13 PM
View recordUser #110 mention Jamal Gerhold mentioned you in a post · 8/7/2025, 11:22:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/501" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/501" ); 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/501"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/501"
)
notification = res.json() Response
{
"id": 501,
"userId": 110,
"type": "mention",
"title": "Jamal Gerhold mentioned you in a post",
"body": "Stultus admiratio nam commodi talis voluntarius cattus sopor thema.",
"isRead": false,
"link": "https://example.com/mention/kH78GDVI",
"createdAt": "2025-08-07T23:22:13.437Z"
}