Activity #133
User #85 follow Daisy Kuhic started following you
9/23/2025, 12:58:22 AM
Overview
notifications / #133
User #85 follow Daisy Kuhic started following you
9/23/2025, 12:58:22 AM
User #85 follow Daisy Kuhic started following you
9/23/2025, 12:58:22 AM
View recordUser #85 follow Daisy Kuhic started following you · 9/23/2025, 12:58:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/133" ); 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/133"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/133"
)
notification = res.json() Response
{
"id": 133,
"userId": 85,
"type": "follow",
"title": "Daisy Kuhic started following you",
"body": "Consequuntur deludo cupio contego.",
"isRead": false,
"link": "https://example.com/follow/Mqt4Gf39",
"createdAt": "2025-09-23T00:58:22.748Z"
}