Activity #1855
User #143 follow Jennifer Hoeger started following you
11/11/2025, 11:11:28 AM
Overview
notifications / #1855
User #143 follow Jennifer Hoeger started following you
11/11/2025, 11:11:28 AM
User #143 follow Jennifer Hoeger started following you
11/11/2025, 11:11:28 AM
View recordUser #143 follow Jennifer Hoeger started following you · 11/11/2025, 11:11:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1855" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1855" ); 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/1855"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1855"
)
notification = res.json() Response
{
"id": 1855,
"userId": 143,
"type": "follow",
"title": "Jennifer Hoeger started following you",
"body": "Vesper tondeo audacia arma ars aptus ambitus taceo amita amet.",
"isRead": true,
"link": "https://example.com/follow/hdZYG1Xy",
"createdAt": "2025-11-11T11:11:28.469Z"
}