Activity #149
User #84 follow Amely Daniel started following you
9/1/2025, 9:20:30 PM
Overview
notifications / #149
User #84 follow Amely Daniel started following you
9/1/2025, 9:20:30 PM
User #84 follow Amely Daniel started following you
9/1/2025, 9:20:30 PM
View recordUser #84 follow Amely Daniel started following you · 9/1/2025, 9:20:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/149" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/149" ); 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/149"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/149"
)
notification = res.json() Response
{
"id": 149,
"userId": 84,
"type": "follow",
"title": "Amely Daniel started following you",
"body": "Speculum corpus demo maiores vehemens textilis termes volva.",
"isRead": true,
"link": null,
"createdAt": "2025-09-01T21:20:30.137Z"
}