Activity #1853
User #220 follow Sammy Schmidt started following you
10/6/2025, 4:13:59 PM
Overview
notifications / #1853
User #220 follow Sammy Schmidt started following you
10/6/2025, 4:13:59 PM
User #220 follow Sammy Schmidt started following you
10/6/2025, 4:13:59 PM
View recordUser #220 follow Sammy Schmidt started following you · 10/6/2025, 4:13:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1853" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1853" ); 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/1853"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1853"
)
notification = res.json() Response
{
"id": 1853,
"userId": 220,
"type": "follow",
"title": "Sammy Schmidt started following you",
"body": "Vitae defungo aro utique cotidie attero hic assentator.",
"isRead": true,
"link": "https://example.com/follow/ouGNhXmN",
"createdAt": "2025-10-06T16:13:59.317Z"
}