Activity #999
User #231 mention Sheridan Turcotte mentioned you in a post
2/10/2026, 8:56:43 AM
Overview
notifications / #999
User #231 mention Sheridan Turcotte mentioned you in a post
2/10/2026, 8:56:43 AM
User #231 mention Sheridan Turcotte mentioned you in a post
2/10/2026, 8:56:43 AM
View recordUser #231 mention Sheridan Turcotte mentioned you in a post · 2/10/2026, 8:56:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/999" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/999" ); 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/999"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/999"
)
notification = res.json() Response
{
"id": 999,
"userId": 231,
"type": "mention",
"title": "Sheridan Turcotte mentioned you in a post",
"body": "Depromo summisse atrox adamo depulso uredo iure.",
"isRead": true,
"link": "https://example.com/mention/tiJcNEam",
"createdAt": "2026-02-10T08:56:43.672Z"
}