Activity #768
User #50 mention Alexa Rippin mentioned you in a post
11/11/2025, 4:51:10 AM
Overview
notifications / #768
User #50 mention Alexa Rippin mentioned you in a post
11/11/2025, 4:51:10 AM
User #50 mention Alexa Rippin mentioned you in a post
11/11/2025, 4:51:10 AM
View recordUser #50 mention Alexa Rippin mentioned you in a post · 11/11/2025, 4:51:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/768" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/768" ); 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/768"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/768"
)
notification = res.json() Response
{
"id": 768,
"userId": 50,
"type": "mention",
"title": "Alexa Rippin mentioned you in a post",
"body": "Censura quis vado adnuo combibo theatrum comes explicabo territo curo.",
"isRead": false,
"link": "https://example.com/mention/IQtYPXPP",
"createdAt": "2025-11-11T04:51:10.354Z"
}