Activity #345
User #17 follow Filiberto Fay started following you
8/21/2025, 8:59:04 PM
Overview
notifications / #345
User #17 follow Filiberto Fay started following you
8/21/2025, 8:59:04 PM
User #17 follow Filiberto Fay started following you
8/21/2025, 8:59:04 PM
View recordUser #17 follow Filiberto Fay started following you · 8/21/2025, 8:59:04 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/345" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/345" ); 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/345"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/345"
)
notification = res.json() Response
{
"id": 345,
"userId": 17,
"type": "follow",
"title": "Filiberto Fay started following you",
"body": "Crepusculum cui conitor vivo.",
"isRead": true,
"link": "https://example.com/follow/sW7uAema",
"createdAt": "2025-08-21T20:59:04.830Z"
}