Activity #1316
User #130 follow Alvina Koch started following you
7/10/2025, 2:42:49 PM
Overview
notifications / #1316
User #130 follow Alvina Koch started following you
7/10/2025, 2:42:49 PM
User #130 follow Alvina Koch started following you
7/10/2025, 2:42:49 PM
View recordUser #130 follow Alvina Koch started following you · 7/10/2025, 2:42:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1316" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1316" ); 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/1316"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1316"
)
notification = res.json() Response
{
"id": 1316,
"userId": 130,
"type": "follow",
"title": "Alvina Koch started following you",
"body": "Thalassinus conscendo paens tepesco communis utpote ventus spectaculum textus temperantia.",
"isRead": true,
"link": "https://example.com/follow/_4bQxxxE",
"createdAt": "2025-07-10T14:42:49.397Z"
}