Activity #1020
User #128 mention Americo Hoppe mentioned you in a post
6/29/2025, 8:51:27 AM
Overview
notifications / #1020
User #128 mention Americo Hoppe mentioned you in a post
6/29/2025, 8:51:27 AM
User #128 mention Americo Hoppe mentioned you in a post
6/29/2025, 8:51:27 AM
View recordUser #128 mention Americo Hoppe mentioned you in a post · 6/29/2025, 8:51:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1020" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1020" ); 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/1020"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1020"
)
notification = res.json() Response
{
"id": 1020,
"userId": 128,
"type": "mention",
"title": "Americo Hoppe mentioned you in a post",
"body": "Deficio calamitas damnatio cito ultra.",
"isRead": false,
"link": "https://example.com/mention/ZWc4dgLk",
"createdAt": "2025-06-29T08:51:27.526Z"
}