Activity #1002
User #64 follow Cassidy Price-Schimmel started following you
2/24/2026, 10:45:09 PM
Overview
notifications / #1002
User #64 follow Cassidy Price-Schimmel started following you
2/24/2026, 10:45:09 PM
User #64 follow Cassidy Price-Schimmel started following you
2/24/2026, 10:45:09 PM
View recordUser #64 follow Cassidy Price-Schimmel started following you · 2/24/2026, 10:45:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1002" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1002" ); 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/1002"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1002"
)
notification = res.json() Response
{
"id": 1002,
"userId": 64,
"type": "follow",
"title": "Cassidy Price-Schimmel started following you",
"body": "Ante fuga excepturi utrimque eius thorax defleo optio defendo coadunatio.",
"isRead": false,
"link": "https://example.com/follow/e0UNAl6v",
"createdAt": "2026-02-24T22:45:09.345Z"
}