Activity #566
User #249 mention Karlee Hudson-Turner mentioned you in a post
7/24/2025, 7:38:56 PM
Overview
notifications / #566
User #249 mention Karlee Hudson-Turner mentioned you in a post
7/24/2025, 7:38:56 PM
User #249 mention Karlee Hudson-Turner mentioned you in a post
7/24/2025, 7:38:56 PM
View recordUser #249 mention Karlee Hudson-Turner mentioned you in a post · 7/24/2025, 7:38:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/566" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/566" ); 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/566"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/566"
)
notification = res.json() Response
{
"id": 566,
"userId": 249,
"type": "mention",
"title": "Karlee Hudson-Turner mentioned you in a post",
"body": "Corona vinum minus illo advenio uredo.",
"isRead": true,
"link": "https://example.com/mention/vdrM1hvC",
"createdAt": "2025-07-24T19:38:56.644Z"
}