Activity #183
User #192 follow Ike Breitenberg started following you
2/5/2026, 9:12:32 PM
Overview
notifications / #183
User #192 follow Ike Breitenberg started following you
2/5/2026, 9:12:32 PM
User #192 follow Ike Breitenberg started following you
2/5/2026, 9:12:32 PM
View recordUser #192 follow Ike Breitenberg started following you · 2/5/2026, 9:12:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/183" ); 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/183"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/183"
)
notification = res.json() Response
{
"id": 183,
"userId": 192,
"type": "follow",
"title": "Ike Breitenberg started following you",
"body": "Contego explicabo amaritudo tristis laborum convoco.",
"isRead": false,
"link": "https://example.com/follow/k3yuTI7e",
"createdAt": "2026-02-05T21:12:32.199Z"
}