Activity #102
User #106 follow Myrtie Daniel started following you
7/24/2025, 6:25:19 AM
Overview
notifications / #102
User #106 follow Myrtie Daniel started following you
7/24/2025, 6:25:19 AM
User #106 follow Myrtie Daniel started following you
7/24/2025, 6:25:19 AM
View recordUser #106 follow Myrtie Daniel started following you · 7/24/2025, 6:25:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/102" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/102" ); 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/102"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/102"
)
notification = res.json() Response
{
"id": 102,
"userId": 106,
"type": "follow",
"title": "Myrtie Daniel started following you",
"body": "Theca angustus deserunt delibero basium.",
"isRead": false,
"link": "https://example.com/follow/MKBgoyNM",
"createdAt": "2025-07-24T06:25:19.128Z"
}