Activity #600
User #56 follow Rubye Emmerich started following you
9/14/2025, 7:30:01 PM
Overview
notifications / #600
User #56 follow Rubye Emmerich started following you
9/14/2025, 7:30:01 PM
User #56 follow Rubye Emmerich started following you
9/14/2025, 7:30:01 PM
View recordUser #56 follow Rubye Emmerich started following you · 9/14/2025, 7:30:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/600" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/600" ); 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/600"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/600"
)
notification = res.json() Response
{
"id": 600,
"userId": 56,
"type": "follow",
"title": "Rubye Emmerich started following you",
"body": "Debilito adficio vicinus.",
"isRead": true,
"link": "https://example.com/follow/Kdsldn9O",
"createdAt": "2025-09-14T19:30:01.729Z"
}