Activity #48
User #90 mention Malvina Ortiz mentioned you in a post
2/25/2026, 5:54:03 PM
Overview
notifications / #48
User #90 mention Malvina Ortiz mentioned you in a post
2/25/2026, 5:54:03 PM
User #90 mention Malvina Ortiz mentioned you in a post
2/25/2026, 5:54:03 PM
View recordUser #90 mention Malvina Ortiz mentioned you in a post · 2/25/2026, 5:54:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/48" ); 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/48"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/48"
)
notification = res.json() Response
{
"id": 48,
"userId": 90,
"type": "mention",
"title": "Malvina Ortiz mentioned you in a post",
"body": "Eveniet abundans colo ater vomica.",
"isRead": true,
"link": null,
"createdAt": "2026-02-25T17:54:03.849Z"
}