Activity #1354
User #59 follow Santa Corwin started following you
2/5/2026, 6:01:42 AM
Overview
notifications / #1354
User #59 follow Santa Corwin started following you
2/5/2026, 6:01:42 AM
User #59 follow Santa Corwin started following you
2/5/2026, 6:01:42 AM
View recordUser #59 follow Santa Corwin started following you · 2/5/2026, 6:01:42 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1354" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1354" ); 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/1354"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1354"
)
notification = res.json() Response
{
"id": 1354,
"userId": 59,
"type": "follow",
"title": "Santa Corwin started following you",
"body": "Corpus degusto urbs cado.",
"isRead": true,
"link": "https://example.com/follow/elumF6ws",
"createdAt": "2026-02-05T06:01:42.114Z"
}