Activity #949
User #184 mention Ismael Ward mentioned you in a post
6/13/2025, 5:18:57 PM
Overview
notifications / #949
User #184 mention Ismael Ward mentioned you in a post
6/13/2025, 5:18:57 PM
User #184 mention Ismael Ward mentioned you in a post
6/13/2025, 5:18:57 PM
View recordUser #184 mention Ismael Ward mentioned you in a post · 6/13/2025, 5:18:57 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/949" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/949" ); 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/949"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/949"
)
notification = res.json() Response
{
"id": 949,
"userId": 184,
"type": "mention",
"title": "Ismael Ward mentioned you in a post",
"body": "Constans tres perspiciatis catena nostrum utilis conqueror cornu defetiscor.",
"isRead": true,
"link": "https://example.com/mention/1VtcUeCr",
"createdAt": "2025-06-13T17:18:57.913Z"
}