Activity #509
User #230 follow Perry Kerluke started following you
10/19/2025, 11:35:59 PM
Overview
notifications / #509
User #230 follow Perry Kerluke started following you
10/19/2025, 11:35:59 PM
User #230 follow Perry Kerluke started following you
10/19/2025, 11:35:59 PM
View recordUser #230 follow Perry Kerluke started following you · 10/19/2025, 11:35:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/509" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/509" ); 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/509"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/509"
)
notification = res.json() Response
{
"id": 509,
"userId": 230,
"type": "follow",
"title": "Perry Kerluke started following you",
"body": "Adaugeo casus deleo solvo itaque reprehenderit praesentium doloribus talio.",
"isRead": true,
"link": null,
"createdAt": "2025-10-19T23:35:59.564Z"
}