Activity #1141
User #152 mention Conrad Connelly mentioned you in a post
9/15/2025, 8:54:32 AM
Overview
notifications / #1141
User #152 mention Conrad Connelly mentioned you in a post
9/15/2025, 8:54:32 AM
User #152 mention Conrad Connelly mentioned you in a post
9/15/2025, 8:54:32 AM
View recordUser #152 mention Conrad Connelly mentioned you in a post · 9/15/2025, 8:54:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1141" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1141" ); 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/1141"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1141"
)
notification = res.json() Response
{
"id": 1141,
"userId": 152,
"type": "mention",
"title": "Conrad Connelly mentioned you in a post",
"body": "Delego quibusdam voco ullam tutis patruus inflammatio rem bibo volutabrum.",
"isRead": true,
"link": "https://example.com/mention/TRfYTZHf",
"createdAt": "2025-09-15T08:54:32.578Z"
}