Activity #1176
User #167 follow Elvis Littel-Vandervort started following you
2/3/2026, 6:21:44 AM
Overview
notifications / #1176
User #167 follow Elvis Littel-Vandervort started following you
2/3/2026, 6:21:44 AM
User #167 follow Elvis Littel-Vandervort started following you
2/3/2026, 6:21:44 AM
View recordUser #167 follow Elvis Littel-Vandervort started following you · 2/3/2026, 6:21:44 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1176" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1176" ); 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/1176"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1176"
)
notification = res.json() Response
{
"id": 1176,
"userId": 167,
"type": "follow",
"title": "Elvis Littel-Vandervort started following you",
"body": "Ancilla sol adiuvo articulus stabilis conforto deleo.",
"isRead": false,
"link": "https://example.com/follow/zJdCqskk",
"createdAt": "2026-02-03T06:21:44.321Z"
}