Activity #1382
User #156 follow Kevon Dickinson started following you
2/16/2026, 12:39:54 AM
Overview
notifications / #1382
User #156 follow Kevon Dickinson started following you
2/16/2026, 12:39:54 AM
User #156 follow Kevon Dickinson started following you
2/16/2026, 12:39:54 AM
View recordUser #156 follow Kevon Dickinson started following you · 2/16/2026, 12:39:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1382" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1382" ); 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/1382"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1382"
)
notification = res.json() Response
{
"id": 1382,
"userId": 156,
"type": "follow",
"title": "Kevon Dickinson started following you",
"body": "Id usitas usus vesco repellat appello.",
"isRead": true,
"link": "https://example.com/follow/_-vNE2tP",
"createdAt": "2026-02-16T00:39:54.272Z"
}