Activity #771
User #68 follow Elva Roberts started following you
1/1/2026, 1:40:30 AM
Overview
notifications / #771
User #68 follow Elva Roberts started following you
1/1/2026, 1:40:30 AM
User #68 follow Elva Roberts started following you
1/1/2026, 1:40:30 AM
View recordUser #68 follow Elva Roberts started following you · 1/1/2026, 1:40:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/771" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/771" ); 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/771"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/771"
)
notification = res.json() Response
{
"id": 771,
"userId": 68,
"type": "follow",
"title": "Elva Roberts started following you",
"body": "Incidunt cruciamentum succedo dedico sapiente bellicus voluptate.",
"isRead": true,
"link": null,
"createdAt": "2026-01-01T01:40:30.174Z"
}