Activity #570
User #60 mention Jaylon Conroy mentioned you in a post
3/5/2026, 9:53:58 PM
Overview
notifications / #570
User #60 mention Jaylon Conroy mentioned you in a post
3/5/2026, 9:53:58 PM
User #60 mention Jaylon Conroy mentioned you in a post
3/5/2026, 9:53:58 PM
View recordUser #60 mention Jaylon Conroy mentioned you in a post · 3/5/2026, 9:53:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/570" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/570" ); 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/570"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/570"
)
notification = res.json() Response
{
"id": 570,
"userId": 60,
"type": "mention",
"title": "Jaylon Conroy mentioned you in a post",
"body": "Crastinus exercitationem tum aequus alter sunt saepe vapulus unde.",
"isRead": false,
"link": null,
"createdAt": "2026-03-05T21:53:58.175Z"
}