Activity #692
User #65 follow Loren Schmidt started following you
6/5/2025, 12:00:44 PM
Overview
notifications / #692
User #65 follow Loren Schmidt started following you
6/5/2025, 12:00:44 PM
User #65 follow Loren Schmidt started following you
6/5/2025, 12:00:44 PM
View recordUser #65 follow Loren Schmidt started following you · 6/5/2025, 12:00:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/692" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/692" ); 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/692"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/692"
)
notification = res.json() Response
{
"id": 692,
"userId": 65,
"type": "follow",
"title": "Loren Schmidt started following you",
"body": "Utique depono aufero ullus convoco cupressus laudantium celebrer tempore vos.",
"isRead": false,
"link": null,
"createdAt": "2025-06-05T12:00:44.389Z"
}