Activity #1003
User #105 mention Kaleb Schmidt mentioned you in a post
6/4/2025, 1:23:10 PM
Overview
notifications / #1003
User #105 mention Kaleb Schmidt mentioned you in a post
6/4/2025, 1:23:10 PM
User #105 mention Kaleb Schmidt mentioned you in a post
6/4/2025, 1:23:10 PM
View recordUser #105 mention Kaleb Schmidt mentioned you in a post · 6/4/2025, 1:23:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1003" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1003" ); 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/1003"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1003"
)
notification = res.json() Response
{
"id": 1003,
"userId": 105,
"type": "mention",
"title": "Kaleb Schmidt mentioned you in a post",
"body": "Vel tamdiu absorbeo usus harum.",
"isRead": true,
"link": "https://example.com/mention/ivglXYC0",
"createdAt": "2025-06-04T13:23:10.013Z"
}