Activity #202
User #39 mention Darian Schaden mentioned you in a post
6/2/2025, 5:58:31 PM
Overview
notifications / #202
User #39 mention Darian Schaden mentioned you in a post
6/2/2025, 5:58:31 PM
User #39 mention Darian Schaden mentioned you in a post
6/2/2025, 5:58:31 PM
View recordUser #39 mention Darian Schaden mentioned you in a post · 6/2/2025, 5:58:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/202" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/202" ); 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/202"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/202"
)
notification = res.json() Response
{
"id": 202,
"userId": 39,
"type": "mention",
"title": "Darian Schaden mentioned you in a post",
"body": "Thermae cursim cras.",
"isRead": false,
"link": null,
"createdAt": "2025-06-02T17:58:31.467Z"
}