Activity #725
User #52 follow Melvina Reilly started following you
8/6/2025, 1:05:46 PM
Overview
notifications / #725
User #52 follow Melvina Reilly started following you
8/6/2025, 1:05:46 PM
User #52 follow Melvina Reilly started following you
8/6/2025, 1:05:46 PM
View recordUser #52 follow Melvina Reilly started following you · 8/6/2025, 1:05:46 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/725" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/725" ); 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/725"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/725"
)
notification = res.json() Response
{
"id": 725,
"userId": 52,
"type": "follow",
"title": "Melvina Reilly started following you",
"body": "Solitudo vester asper reiciendis.",
"isRead": true,
"link": "https://example.com/follow/JG-MkhNW",
"createdAt": "2025-08-06T13:05:46.180Z"
}