Activity #939
User #225 mention Alvina Koch mentioned you in a post
8/31/2025, 2:26:07 AM
Overview
notifications / #939
User #225 mention Alvina Koch mentioned you in a post
8/31/2025, 2:26:07 AM
User #225 mention Alvina Koch mentioned you in a post
8/31/2025, 2:26:07 AM
View recordUser #225 mention Alvina Koch mentioned you in a post · 8/31/2025, 2:26:07 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/939" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/939" ); 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/939"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/939"
)
notification = res.json() Response
{
"id": 939,
"userId": 225,
"type": "mention",
"title": "Alvina Koch mentioned you in a post",
"body": "Succurro cursus ante desipio demitto.",
"isRead": false,
"link": null,
"createdAt": "2025-08-31T02:26:07.208Z"
}