Activity #1135
User #113 follow Minerva Hettinger started following you
6/29/2025, 8:11:32 AM
Overview
notifications / #1135
User #113 follow Minerva Hettinger started following you
6/29/2025, 8:11:32 AM
User #113 follow Minerva Hettinger started following you
6/29/2025, 8:11:32 AM
View recordUser #113 follow Minerva Hettinger started following you · 6/29/2025, 8:11:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1135" ); 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/1135"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1135"
)
notification = res.json() Response
{
"id": 1135,
"userId": 113,
"type": "follow",
"title": "Minerva Hettinger started following you",
"body": "Autem supellex traho damno at vix suggero texo.",
"isRead": true,
"link": "https://example.com/follow/2SsqxcfQ",
"createdAt": "2025-06-29T08:11:32.727Z"
}