Activity #1866
User #114 follow Anne Hamill started following you
5/30/2025, 3:36:35 AM
Overview
notifications / #1866
User #114 follow Anne Hamill started following you
5/30/2025, 3:36:35 AM
User #114 follow Anne Hamill started following you
5/30/2025, 3:36:35 AM
View recordUser #114 follow Anne Hamill started following you · 5/30/2025, 3:36:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1866" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1866" ); 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/1866"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1866"
)
notification = res.json() Response
{
"id": 1866,
"userId": 114,
"type": "follow",
"title": "Anne Hamill started following you",
"body": "In cometes atque vesco vorago adhaero derelinquo atqui valeo voluptate.",
"isRead": true,
"link": "https://example.com/follow/Y6FpxVEu",
"createdAt": "2025-05-30T03:36:35.609Z"
}