Activity #837
User #68 mention Alexa Rippin mentioned you in a post
12/14/2025, 8:34:18 PM
Overview
notifications / #837
User #68 mention Alexa Rippin mentioned you in a post
12/14/2025, 8:34:18 PM
User #68 mention Alexa Rippin mentioned you in a post
12/14/2025, 8:34:18 PM
View recordUser #68 mention Alexa Rippin mentioned you in a post · 12/14/2025, 8:34:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/837" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/837" ); 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/837"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/837"
)
notification = res.json() Response
{
"id": 837,
"userId": 68,
"type": "mention",
"title": "Alexa Rippin mentioned you in a post",
"body": "Delibero vero urbs.",
"isRead": false,
"link": "https://example.com/mention/ufD5zkR6",
"createdAt": "2025-12-14T20:34:18.997Z"
}