Activity #1045
User #18 follow Porter Dooley started following you
10/24/2025, 3:51:54 AM
Overview
notifications / #1045
User #18 follow Porter Dooley started following you
10/24/2025, 3:51:54 AM
User #18 follow Porter Dooley started following you
10/24/2025, 3:51:54 AM
View recordUser #18 follow Porter Dooley started following you · 10/24/2025, 3:51:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1045" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1045" ); 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/1045"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1045"
)
notification = res.json() Response
{
"id": 1045,
"userId": 18,
"type": "follow",
"title": "Porter Dooley started following you",
"body": "Cunae talis degenero suppellex.",
"isRead": true,
"link": "https://example.com/follow/_1wNXB18",
"createdAt": "2025-10-24T03:51:54.235Z"
}