Activity #1136
User #58 mention Perry Kerluke mentioned you in a post
6/4/2025, 8:24:01 AM
Overview
notifications / #1136
User #58 mention Perry Kerluke mentioned you in a post
6/4/2025, 8:24:01 AM
User #58 mention Perry Kerluke mentioned you in a post
6/4/2025, 8:24:01 AM
View recordUser #58 mention Perry Kerluke mentioned you in a post · 6/4/2025, 8:24:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1136" ); 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/1136"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1136"
)
notification = res.json() Response
{
"id": 1136,
"userId": 58,
"type": "mention",
"title": "Perry Kerluke mentioned you in a post",
"body": "Supra adopto vorago barba confugo sollicito dignissimos.",
"isRead": true,
"link": "https://example.com/mention/_tS2vbFx",
"createdAt": "2025-06-04T08:24:01.889Z"
}