Activity #1310
User #41 follow Conner Bernhard started following you
9/14/2025, 11:43:16 AM
Overview
notifications / #1310
User #41 follow Conner Bernhard started following you
9/14/2025, 11:43:16 AM
User #41 follow Conner Bernhard started following you
9/14/2025, 11:43:16 AM
View recordUser #41 follow Conner Bernhard started following you · 9/14/2025, 11:43:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1310" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1310" ); 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/1310"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1310"
)
notification = res.json() Response
{
"id": 1310,
"userId": 41,
"type": "follow",
"title": "Conner Bernhard started following you",
"body": "Dolorum corpus valde claustrum chirographum natus taceo dedecor expedita.",
"isRead": true,
"link": "https://example.com/follow/P2_NK-c8",
"createdAt": "2025-09-14T11:43:16.478Z"
}