Activity #104
User #113 follow Dasia Volkman started following you
3/15/2026, 8:20:54 PM
Overview
notifications / #104
User #113 follow Dasia Volkman started following you
3/15/2026, 8:20:54 PM
User #113 follow Dasia Volkman started following you
3/15/2026, 8:20:54 PM
View recordUser #113 follow Dasia Volkman started following you · 3/15/2026, 8:20:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/104" ); 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/104"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/104"
)
notification = res.json() Response
{
"id": 104,
"userId": 113,
"type": "follow",
"title": "Dasia Volkman started following you",
"body": "Thema contego tabgo amita aspernatur subseco.",
"isRead": false,
"link": null,
"createdAt": "2026-03-15T20:20:54.332Z"
}