Activity #1538
User #203 follow Ethyl Auer started following you
3/29/2026, 2:40:40 PM
Overview
notifications / #1538
User #203 follow Ethyl Auer started following you
3/29/2026, 2:40:40 PM
User #203 follow Ethyl Auer started following you
3/29/2026, 2:40:40 PM
View recordUser #203 follow Ethyl Auer started following you · 3/29/2026, 2:40:40 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1538" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1538" ); 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/1538"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1538"
)
notification = res.json() Response
{
"id": 1538,
"userId": 203,
"type": "follow",
"title": "Ethyl Auer started following you",
"body": "Canis vix dolorem deserunt.",
"isRead": true,
"link": null,
"createdAt": "2026-03-29T14:40:40.802Z"
}