Activity #364
User #218 follow Queen Lubowitz started following you
9/17/2025, 9:34:53 AM
Overview
notifications / #364
User #218 follow Queen Lubowitz started following you
9/17/2025, 9:34:53 AM
User #218 follow Queen Lubowitz started following you
9/17/2025, 9:34:53 AM
View recordUser #218 follow Queen Lubowitz started following you · 9/17/2025, 9:34:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/364" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/364" ); 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/364"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/364"
)
notification = res.json() Response
{
"id": 364,
"userId": 218,
"type": "follow",
"title": "Queen Lubowitz started following you",
"body": "Textilis ventito explicabo crudelis.",
"isRead": true,
"link": null,
"createdAt": "2025-09-17T09:34:53.106Z"
}