Activity #1473
User #58 follow Oliver Mitchell started following you
8/21/2025, 3:41:51 PM
Overview
notifications / #1473
User #58 follow Oliver Mitchell started following you
8/21/2025, 3:41:51 PM
User #58 follow Oliver Mitchell started following you
8/21/2025, 3:41:51 PM
View recordUser #58 follow Oliver Mitchell started following you · 8/21/2025, 3:41:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1473" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1473" ); 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/1473"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1473"
)
notification = res.json() Response
{
"id": 1473,
"userId": 58,
"type": "follow",
"title": "Oliver Mitchell started following you",
"body": "Maiores pecus ulterius defleo architecto tracto trepide verbum.",
"isRead": false,
"link": "https://example.com/follow/1T9H9EGF",
"createdAt": "2025-08-21T15:41:51.790Z"
}