Activity #326
User #188 follow Kenya Abshire started following you
4/27/2026, 8:59:43 PM
Overview
notifications / #326
User #188 follow Kenya Abshire started following you
4/27/2026, 8:59:43 PM
User #188 follow Kenya Abshire started following you
4/27/2026, 8:59:43 PM
View recordUser #188 follow Kenya Abshire started following you · 4/27/2026, 8:59:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/326" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/326" ); 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/326"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/326"
)
notification = res.json() Response
{
"id": 326,
"userId": 188,
"type": "follow",
"title": "Kenya Abshire started following you",
"body": "Adulatio accusantium dedecor beatae abbas absque id arbustum.",
"isRead": true,
"link": "https://example.com/follow/rgAbGI8D",
"createdAt": "2026-04-27T20:59:43.608Z"
}