Activity #1695
User #158 follow Porter Dooley started following you
10/16/2025, 7:58:25 AM
Overview
notifications / #1695
User #158 follow Porter Dooley started following you
10/16/2025, 7:58:25 AM
User #158 follow Porter Dooley started following you
10/16/2025, 7:58:25 AM
View recordUser #158 follow Porter Dooley started following you · 10/16/2025, 7:58:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1695" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1695" ); 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/1695"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1695"
)
notification = res.json() Response
{
"id": 1695,
"userId": 158,
"type": "follow",
"title": "Porter Dooley started following you",
"body": "Crudelis comburo sto aestivus atrocitas est.",
"isRead": false,
"link": "https://example.com/follow/L7WBzf4a",
"createdAt": "2025-10-16T07:58:25.194Z"
}