Activity #115
User #210 mention Fatima Dicki mentioned you in a post
2/18/2026, 1:01:06 AM
Overview
notifications / #115
User #210 mention Fatima Dicki mentioned you in a post
2/18/2026, 1:01:06 AM
User #210 mention Fatima Dicki mentioned you in a post
2/18/2026, 1:01:06 AM
View recordUser #210 mention Fatima Dicki mentioned you in a post · 2/18/2026, 1:01:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/115" ); 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/115"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/115"
)
notification = res.json() Response
{
"id": 115,
"userId": 210,
"type": "mention",
"title": "Fatima Dicki mentioned you in a post",
"body": "Quod eligendi acies benigne succedo amicitia corrigo sumo timidus socius.",
"isRead": false,
"link": null,
"createdAt": "2026-02-18T01:01:06.997Z"
}