Activity #233
User #14 mention Fritz Skiles mentioned you in a post
1/19/2026, 9:26:18 PM
Overview
notifications / #233
User #14 mention Fritz Skiles mentioned you in a post
1/19/2026, 9:26:18 PM
User #14 mention Fritz Skiles mentioned you in a post
1/19/2026, 9:26:18 PM
View recordUser #14 mention Fritz Skiles mentioned you in a post · 1/19/2026, 9:26:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/233" ); 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/233"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/233"
)
notification = res.json() Response
{
"id": 233,
"userId": 14,
"type": "mention",
"title": "Fritz Skiles mentioned you in a post",
"body": "Succurro totam infit.",
"isRead": false,
"link": null,
"createdAt": "2026-01-19T21:26:18.078Z"
}