Activity #1955
User #71 mention Simeon Robel mentioned you in a post
8/3/2025, 8:35:30 AM
Overview
notifications / #1955
User #71 mention Simeon Robel mentioned you in a post
8/3/2025, 8:35:30 AM
User #71 mention Simeon Robel mentioned you in a post
8/3/2025, 8:35:30 AM
View recordUser #71 mention Simeon Robel mentioned you in a post · 8/3/2025, 8:35:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1955" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1955" ); 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/1955"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1955"
)
notification = res.json() Response
{
"id": 1955,
"userId": 71,
"type": "mention",
"title": "Simeon Robel mentioned you in a post",
"body": "Repudiandae tenuis tibi summa amita amo vulgus.",
"isRead": false,
"link": "https://example.com/mention/fWGxyIyo",
"createdAt": "2025-08-03T08:35:30.331Z"
}