Activity #1850
User #190 mention Lenny Howe mentioned you in a post
9/4/2025, 9:01:14 AM
Overview
notifications / #1850
User #190 mention Lenny Howe mentioned you in a post
9/4/2025, 9:01:14 AM
User #190 mention Lenny Howe mentioned you in a post
9/4/2025, 9:01:14 AM
View recordUser #190 mention Lenny Howe mentioned you in a post · 9/4/2025, 9:01:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1850" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1850" ); 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/1850"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1850"
)
notification = res.json() Response
{
"id": 1850,
"userId": 190,
"type": "mention",
"title": "Lenny Howe mentioned you in a post",
"body": "Varietas ascit sol carmen eaque acies aiunt callide curiositas.",
"isRead": true,
"link": "https://example.com/mention/QT1BKQ0d",
"createdAt": "2025-09-04T09:01:14.084Z"
}