Activity #993
User #153 mention Ethyl Auer mentioned you in a post
11/19/2025, 4:34:54 AM
Overview
notifications / #993
User #153 mention Ethyl Auer mentioned you in a post
11/19/2025, 4:34:54 AM
User #153 mention Ethyl Auer mentioned you in a post
11/19/2025, 4:34:54 AM
View recordUser #153 mention Ethyl Auer mentioned you in a post · 11/19/2025, 4:34:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/993" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/993" ); 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/993"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/993"
)
notification = res.json() Response
{
"id": 993,
"userId": 153,
"type": "mention",
"title": "Ethyl Auer mentioned you in a post",
"body": "Ceno dens dignissimos curto voluptatem timidus aeneus acquiro vilitas.",
"isRead": false,
"link": "https://example.com/mention/1JZs-dL5",
"createdAt": "2025-11-19T04:34:54.889Z"
}