Activity #959
User #35 follow Jameson Considine started following you
8/28/2025, 12:27:14 PM
Overview
notifications / #959
User #35 follow Jameson Considine started following you
8/28/2025, 12:27:14 PM
User #35 follow Jameson Considine started following you
8/28/2025, 12:27:14 PM
View recordUser #35 follow Jameson Considine started following you · 8/28/2025, 12:27:14 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/959" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/959" ); 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/959"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/959"
)
notification = res.json() Response
{
"id": 959,
"userId": 35,
"type": "follow",
"title": "Jameson Considine started following you",
"body": "Vacuus colligo demens corona nemo demonstro talio.",
"isRead": true,
"link": null,
"createdAt": "2025-08-28T12:27:14.437Z"
}