Activity #1373
User #205 follow Mckenna Hegmann-Price started following you
3/11/2026, 2:15:18 AM
Overview
notifications / #1373
User #205 follow Mckenna Hegmann-Price started following you
3/11/2026, 2:15:18 AM
User #205 follow Mckenna Hegmann-Price started following you
3/11/2026, 2:15:18 AM
View recordUser #205 follow Mckenna Hegmann-Price started following you · 3/11/2026, 2:15:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1373" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1373" ); 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/1373"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1373"
)
notification = res.json() Response
{
"id": 1373,
"userId": 205,
"type": "follow",
"title": "Mckenna Hegmann-Price started following you",
"body": "Absens terga valens sub aut esse molestiae textor.",
"isRead": false,
"link": null,
"createdAt": "2026-03-11T02:15:18.263Z"
}