Activity #777
User #159 mention Joseph Steuber mentioned you in a post
10/21/2025, 3:06:12 PM
Overview
notifications / #777
User #159 mention Joseph Steuber mentioned you in a post
10/21/2025, 3:06:12 PM
User #159 mention Joseph Steuber mentioned you in a post
10/21/2025, 3:06:12 PM
View recordUser #159 mention Joseph Steuber mentioned you in a post · 10/21/2025, 3:06:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/777" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/777" ); 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/777"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/777"
)
notification = res.json() Response
{
"id": 777,
"userId": 159,
"type": "mention",
"title": "Joseph Steuber mentioned you in a post",
"body": "Vetus commodi subiungo cometes venio vulnero numquam comptus cariosus varietas.",
"isRead": true,
"link": "https://example.com/mention/xjKkruQN",
"createdAt": "2025-10-21T15:06:12.199Z"
}