Activity #1290
User #9 follow Abdul Rau started following you
5/11/2026, 7:38:20 PM
Overview
notifications / #1290
User #9 follow Abdul Rau started following you
5/11/2026, 7:38:20 PM
User #9 follow Abdul Rau started following you
5/11/2026, 7:38:20 PM
View recordUser #9 follow Abdul Rau started following you · 5/11/2026, 7:38:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1290" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1290" ); 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/1290"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1290"
)
notification = res.json() Response
{
"id": 1290,
"userId": 9,
"type": "follow",
"title": "Abdul Rau started following you",
"body": "Dolorum quis calamitas.",
"isRead": false,
"link": "https://example.com/follow/XlV-7kWd",
"createdAt": "2026-05-11T19:38:20.350Z"
}