Activity #1404
User #238 mention Gerda Streich mentioned you in a post
12/11/2025, 3:00:13 PM
Overview
notifications / #1404
User #238 mention Gerda Streich mentioned you in a post
12/11/2025, 3:00:13 PM
User #238 mention Gerda Streich mentioned you in a post
12/11/2025, 3:00:13 PM
View recordUser #238 mention Gerda Streich mentioned you in a post · 12/11/2025, 3:00:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1404" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1404" ); 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/1404"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1404"
)
notification = res.json() Response
{
"id": 1404,
"userId": 238,
"type": "mention",
"title": "Gerda Streich mentioned you in a post",
"body": "Valde sunt coruscus patior defessus vae.",
"isRead": true,
"link": null,
"createdAt": "2025-12-11T15:00:13.131Z"
}