Activity #1128
User #234 follow Adelia Roberts started following you
11/21/2025, 2:47:32 PM
Overview
notifications / #1128
User #234 follow Adelia Roberts started following you
11/21/2025, 2:47:32 PM
User #234 follow Adelia Roberts started following you
11/21/2025, 2:47:32 PM
View recordUser #234 follow Adelia Roberts started following you · 11/21/2025, 2:47:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1128" ); 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/1128"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1128"
)
notification = res.json() Response
{
"id": 1128,
"userId": 234,
"type": "follow",
"title": "Adelia Roberts started following you",
"body": "Subseco creber curto civis vindico colligo vilitas tristis votum.",
"isRead": false,
"link": "https://example.com/follow/_30IqMjG",
"createdAt": "2025-11-21T14:47:32.847Z"
}