Activity #707
User #194 mention Gavin Lowe mentioned you in a post
3/8/2026, 2:44:58 AM
Overview
notifications / #707
User #194 mention Gavin Lowe mentioned you in a post
3/8/2026, 2:44:58 AM
User #194 mention Gavin Lowe mentioned you in a post
3/8/2026, 2:44:58 AM
View recordUser #194 mention Gavin Lowe mentioned you in a post · 3/8/2026, 2:44:58 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/707" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/707" ); 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/707"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/707"
)
notification = res.json() Response
{
"id": 707,
"userId": 194,
"type": "mention",
"title": "Gavin Lowe mentioned you in a post",
"body": "Ventus venio cerno expedita.",
"isRead": false,
"link": "https://example.com/mention/BOa-f1hE",
"createdAt": "2026-03-08T02:44:58.902Z"
}