Activity #855
User #137 follow Chyna Kozey started following you
11/7/2025, 7:42:36 PM
Overview
notifications / #855
User #137 follow Chyna Kozey started following you
11/7/2025, 7:42:36 PM
User #137 follow Chyna Kozey started following you
11/7/2025, 7:42:36 PM
View recordUser #137 follow Chyna Kozey started following you · 11/7/2025, 7:42:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/855" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/855" ); 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/855"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/855"
)
notification = res.json() Response
{
"id": 855,
"userId": 137,
"type": "follow",
"title": "Chyna Kozey started following you",
"body": "Culpo ducimus laborum arguo civitas callide adopto.",
"isRead": true,
"link": "https://example.com/follow/lvis5cFi",
"createdAt": "2025-11-07T19:42:36.560Z"
}