Activity #623
User #27 mention Beau Stiedemann mentioned you in a post
6/27/2025, 4:14:45 AM
Overview
notifications / #623
User #27 mention Beau Stiedemann mentioned you in a post
6/27/2025, 4:14:45 AM
User #27 mention Beau Stiedemann mentioned you in a post
6/27/2025, 4:14:45 AM
View recordUser #27 mention Beau Stiedemann mentioned you in a post · 6/27/2025, 4:14:45 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/623" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/623" ); 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/623"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/623"
)
notification = res.json() Response
{
"id": 623,
"userId": 27,
"type": "mention",
"title": "Beau Stiedemann mentioned you in a post",
"body": "Terebro aranea occaecati illo.",
"isRead": false,
"link": "https://example.com/mention/V43tys_a",
"createdAt": "2025-06-27T04:14:45.999Z"
}