Activity #1607
User #214 follow Izaiah Rempel started following you
11/20/2025, 9:22:22 AM
Overview
notifications / #1607
User #214 follow Izaiah Rempel started following you
11/20/2025, 9:22:22 AM
User #214 follow Izaiah Rempel started following you
11/20/2025, 9:22:22 AM
View recordUser #214 follow Izaiah Rempel started following you · 11/20/2025, 9:22:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1607" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1607" ); 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/1607"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1607"
)
notification = res.json() Response
{
"id": 1607,
"userId": 214,
"type": "follow",
"title": "Izaiah Rempel started following you",
"body": "Sint vere tubineus creber currus pax virtus cunabula curiositas demum.",
"isRead": true,
"link": null,
"createdAt": "2025-11-20T09:22:22.123Z"
}