Activity #168
User #116 follow Jabari Farrell started following you
7/20/2025, 5:52:11 AM
Overview
notifications / #168
User #116 follow Jabari Farrell started following you
7/20/2025, 5:52:11 AM
User #116 follow Jabari Farrell started following you
7/20/2025, 5:52:11 AM
View recordUser #116 follow Jabari Farrell started following you · 7/20/2025, 5:52:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/168" ); 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/168"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/168"
)
notification = res.json() Response
{
"id": 168,
"userId": 116,
"type": "follow",
"title": "Jabari Farrell started following you",
"body": "Animadverto cerno acervus deorsum sto facere demo vester acidus clarus.",
"isRead": false,
"link": "https://example.com/follow/psThgxfF",
"createdAt": "2025-07-20T05:52:11.817Z"
}