Activity #66
User #13 mention Perry Kerluke mentioned you in a post
5/25/2025, 5:06:50 PM
Overview
notifications / #66
User #13 mention Perry Kerluke mentioned you in a post
5/25/2025, 5:06:50 PM
User #13 mention Perry Kerluke mentioned you in a post
5/25/2025, 5:06:50 PM
View recordUser #13 mention Perry Kerluke mentioned you in a post · 5/25/2025, 5:06:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/66" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/66" ); 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/66"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/66"
)
notification = res.json() Response
{
"id": 66,
"userId": 13,
"type": "mention",
"title": "Perry Kerluke mentioned you in a post",
"body": "Dedecor voluptate curto neque cursus delibero.",
"isRead": true,
"link": null,
"createdAt": "2025-05-25T17:06:50.683Z"
}