Activity #747
User #30 follow Alvina Koch started following you
5/25/2025, 1:52:42 PM
Overview
notifications / #747
User #30 follow Alvina Koch started following you
5/25/2025, 1:52:42 PM
User #30 follow Alvina Koch started following you
5/25/2025, 1:52:42 PM
View recordUser #30 follow Alvina Koch started following you · 5/25/2025, 1:52:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/747" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/747" ); 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/747"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/747"
)
notification = res.json() Response
{
"id": 747,
"userId": 30,
"type": "follow",
"title": "Alvina Koch started following you",
"body": "Tabgo veniam absens.",
"isRead": false,
"link": null,
"createdAt": "2025-05-25T13:52:42.098Z"
}