Activity #1380
User #189 follow Melvina Reilly started following you
7/7/2025, 11:02:51 PM
Overview
notifications / #1380
User #189 follow Melvina Reilly started following you
7/7/2025, 11:02:51 PM
User #189 follow Melvina Reilly started following you
7/7/2025, 11:02:51 PM
View recordUser #189 follow Melvina Reilly started following you · 7/7/2025, 11:02:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1380" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1380" ); 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/1380"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1380"
)
notification = res.json() Response
{
"id": 1380,
"userId": 189,
"type": "follow",
"title": "Melvina Reilly started following you",
"body": "Repudiandae tui considero voro talis timidus tergiversatio.",
"isRead": false,
"link": "https://example.com/follow/ZGwPEcjm",
"createdAt": "2025-07-07T23:02:51.308Z"
}