Activity #340
User #52 follow Roosevelt Ullrich started following you
5/7/2026, 8:01:47 AM
Overview
notifications / #340
User #52 follow Roosevelt Ullrich started following you
5/7/2026, 8:01:47 AM
User #52 follow Roosevelt Ullrich started following you
5/7/2026, 8:01:47 AM
View recordUser #52 follow Roosevelt Ullrich started following you · 5/7/2026, 8:01:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/340" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/340" ); 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/340"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/340"
)
notification = res.json() Response
{
"id": 340,
"userId": 52,
"type": "follow",
"title": "Roosevelt Ullrich started following you",
"body": "Tersus nemo capio vado blanditiis debitis cribro.",
"isRead": false,
"link": "https://example.com/follow/7zYJeaXu",
"createdAt": "2026-05-07T08:01:47.495Z"
}