Activity #42
User #134 mention Audreanne Will mentioned you in a post
12/4/2025, 10:26:01 PM
Overview
notifications / #42
User #134 mention Audreanne Will mentioned you in a post
12/4/2025, 10:26:01 PM
User #134 mention Audreanne Will mentioned you in a post
12/4/2025, 10:26:01 PM
View recordUser #134 mention Audreanne Will mentioned you in a post · 12/4/2025, 10:26:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/42" ); 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/42"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/42"
)
notification = res.json() Response
{
"id": 42,
"userId": 134,
"type": "mention",
"title": "Audreanne Will mentioned you in a post",
"body": "Arcesso infit thymbra autem.",
"isRead": false,
"link": "https://example.com/mention/nee8ZlFA",
"createdAt": "2025-12-04T22:26:01.082Z"
}