Activity #687
User #98 follow Cassidy Price-Schimmel started following you
7/31/2025, 6:38:03 AM
Overview
notifications / #687
User #98 follow Cassidy Price-Schimmel started following you
7/31/2025, 6:38:03 AM
User #98 follow Cassidy Price-Schimmel started following you
7/31/2025, 6:38:03 AM
View recordUser #98 follow Cassidy Price-Schimmel started following you · 7/31/2025, 6:38:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/687" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/687" ); 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/687"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/687"
)
notification = res.json() Response
{
"id": 687,
"userId": 98,
"type": "follow",
"title": "Cassidy Price-Schimmel started following you",
"body": "Inflammatio utique urbanus pariatur tutamen cognomen tergo vulgivagus depromo rem.",
"isRead": false,
"link": "https://example.com/follow/3GBVtDDe",
"createdAt": "2025-07-31T06:38:03.528Z"
}