Activity #803
User #141 follow Cruz Okuneva started following you
2/18/2026, 7:59:05 AM
Overview
notifications / #803
User #141 follow Cruz Okuneva started following you
2/18/2026, 7:59:05 AM
User #141 follow Cruz Okuneva started following you
2/18/2026, 7:59:05 AM
View recordUser #141 follow Cruz Okuneva started following you · 2/18/2026, 7:59:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/803" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/803" ); 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/803"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/803"
)
notification = res.json() Response
{
"id": 803,
"userId": 141,
"type": "follow",
"title": "Cruz Okuneva started following you",
"body": "Cunabula utilis aggredior ulterius talus brevis vicinus.",
"isRead": true,
"link": "https://example.com/follow/zTJEOBzA",
"createdAt": "2026-02-18T07:59:05.297Z"
}