Activity #521
User #164 follow Myrl Pollich started following you
11/17/2025, 4:00:11 AM
Overview
notifications / #521
User #164 follow Myrl Pollich started following you
11/17/2025, 4:00:11 AM
User #164 follow Myrl Pollich started following you
11/17/2025, 4:00:11 AM
View recordUser #164 follow Myrl Pollich started following you · 11/17/2025, 4:00:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/521" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/521" ); 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/521"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/521"
)
notification = res.json() Response
{
"id": 521,
"userId": 164,
"type": "follow",
"title": "Myrl Pollich started following you",
"body": "Cetera voro colligo tum adamo amicitia deinde voluptatem.",
"isRead": false,
"link": "https://example.com/follow/zzF59RKN",
"createdAt": "2025-11-17T04:00:11.598Z"
}