Activity #924
User #44 mention Sheridan Turcotte mentioned you in a post
12/3/2025, 1:35:49 AM
Overview
notifications / #924
User #44 mention Sheridan Turcotte mentioned you in a post
12/3/2025, 1:35:49 AM
User #44 mention Sheridan Turcotte mentioned you in a post
12/3/2025, 1:35:49 AM
View recordUser #44 mention Sheridan Turcotte mentioned you in a post · 12/3/2025, 1:35:49 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/924" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/924" ); 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/924"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/924"
)
notification = res.json() Response
{
"id": 924,
"userId": 44,
"type": "mention",
"title": "Sheridan Turcotte mentioned you in a post",
"body": "Molestias carcer vicinus vilicus amoveo.",
"isRead": true,
"link": "https://example.com/mention/V-pP7i6O",
"createdAt": "2025-12-03T01:35:49.370Z"
}