Activity #1627
User #39 mention Elva Roberts mentioned you in a post
7/1/2025, 2:09:49 AM
Overview
notifications / #1627
User #39 mention Elva Roberts mentioned you in a post
7/1/2025, 2:09:49 AM
User #39 mention Elva Roberts mentioned you in a post
7/1/2025, 2:09:49 AM
View recordUser #39 mention Elva Roberts mentioned you in a post · 7/1/2025, 2:09:49 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1627" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1627" ); 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/1627"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1627"
)
notification = res.json() Response
{
"id": 1627,
"userId": 39,
"type": "mention",
"title": "Elva Roberts mentioned you in a post",
"body": "Tergiversatio verus adicio defleo vallum veritas blanditiis.",
"isRead": true,
"link": null,
"createdAt": "2025-07-01T02:09:49.724Z"
}