Activity #182
User #24 mention Perry Kerluke mentioned you in a post
5/8/2026, 2:24:31 PM
Overview
notifications / #182
User #24 mention Perry Kerluke mentioned you in a post
5/8/2026, 2:24:31 PM
User #24 mention Perry Kerluke mentioned you in a post
5/8/2026, 2:24:31 PM
View recordUser #24 mention Perry Kerluke mentioned you in a post · 5/8/2026, 2:24:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/182" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/182" ); 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/182"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/182"
)
notification = res.json() Response
{
"id": 182,
"userId": 24,
"type": "mention",
"title": "Perry Kerluke mentioned you in a post",
"body": "Claudeo odio pecco vomica.",
"isRead": false,
"link": "https://example.com/mention/3UdzI16Q",
"createdAt": "2026-05-08T14:24:31.490Z"
}