Activity #638
User #69 follow Jermain Kshlerin started following you
9/2/2025, 11:00:26 PM
Overview
notifications / #638
User #69 follow Jermain Kshlerin started following you
9/2/2025, 11:00:26 PM
User #69 follow Jermain Kshlerin started following you
9/2/2025, 11:00:26 PM
View recordUser #69 follow Jermain Kshlerin started following you · 9/2/2025, 11:00:26 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/638" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/638" ); 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/638"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/638"
)
notification = res.json() Response
{
"id": 638,
"userId": 69,
"type": "follow",
"title": "Jermain Kshlerin started following you",
"body": "Rem corroboro vulnus aperio caute suffragium.",
"isRead": false,
"link": null,
"createdAt": "2025-09-02T23:00:26.558Z"
}