Activity #95
User #248 follow Autumn Bartell started following you
8/27/2025, 2:18:07 PM
Overview
notifications / #95
User #248 follow Autumn Bartell started following you
8/27/2025, 2:18:07 PM
User #248 follow Autumn Bartell started following you
8/27/2025, 2:18:07 PM
View recordUser #248 follow Autumn Bartell started following you · 8/27/2025, 2:18:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/95" ); 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/95"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/95"
)
notification = res.json() Response
{
"id": 95,
"userId": 248,
"type": "follow",
"title": "Autumn Bartell started following you",
"body": "Contigo omnis curriculum celo cauda cicuta maxime advoco.",
"isRead": true,
"link": "https://example.com/follow/pKRxCeox",
"createdAt": "2025-08-27T14:18:07.902Z"
}