Activity #550
User #114 follow Ruben Terry started following you
12/23/2025, 10:38:45 PM
Overview
notifications / #550
User #114 follow Ruben Terry started following you
12/23/2025, 10:38:45 PM
User #114 follow Ruben Terry started following you
12/23/2025, 10:38:45 PM
View recordUser #114 follow Ruben Terry started following you · 12/23/2025, 10:38:45 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/550" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/550" ); 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/550"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/550"
)
notification = res.json() Response
{
"id": 550,
"userId": 114,
"type": "follow",
"title": "Ruben Terry started following you",
"body": "Benigne tempora at audentia comedo talio vero atavus asper voro.",
"isRead": false,
"link": "https://example.com/follow/ft6-3d78",
"createdAt": "2025-12-23T22:38:45.813Z"
}