Activity #662
User #187 follow Vincenza Zemlak-Collier started following you
11/20/2025, 1:47:02 AM
Overview
notifications / #662
User #187 follow Vincenza Zemlak-Collier started following you
11/20/2025, 1:47:02 AM
User #187 follow Vincenza Zemlak-Collier started following you
11/20/2025, 1:47:02 AM
View recordUser #187 follow Vincenza Zemlak-Collier started following you · 11/20/2025, 1:47:02 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/662" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/662" ); 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/662"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/662"
)
notification = res.json() Response
{
"id": 662,
"userId": 187,
"type": "follow",
"title": "Vincenza Zemlak-Collier started following you",
"body": "Saepe libero ventosus adipiscor hic suffragium tristis ait.",
"isRead": true,
"link": null,
"createdAt": "2025-11-20T01:47:02.366Z"
}