Activity #1409
User #1 follow Jamil Mayer started following you
5/5/2026, 4:39:19 PM
Overview
notifications / #1409
User #1 follow Jamil Mayer started following you
5/5/2026, 4:39:19 PM
User #1 follow Jamil Mayer started following you
5/5/2026, 4:39:19 PM
View recordUser #1 follow Jamil Mayer started following you · 5/5/2026, 4:39:19 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1409" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1409" ); 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/1409"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1409"
)
notification = res.json() Response
{
"id": 1409,
"userId": 1,
"type": "follow",
"title": "Jamil Mayer started following you",
"body": "Varietas tergum deserunt tertius delectatio clarus atrocitas.",
"isRead": false,
"link": "https://example.com/follow/jpr1bezX",
"createdAt": "2026-05-05T16:39:19.265Z"
}