Activity #1009
User #106 follow Ismael Ward started following you
6/24/2025, 5:07:42 PM
Overview
notifications / #1009
User #106 follow Ismael Ward started following you
6/24/2025, 5:07:42 PM
User #106 follow Ismael Ward started following you
6/24/2025, 5:07:42 PM
View recordUser #106 follow Ismael Ward started following you · 6/24/2025, 5:07:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1009" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1009" ); 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/1009"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1009"
)
notification = res.json() Response
{
"id": 1009,
"userId": 106,
"type": "follow",
"title": "Ismael Ward started following you",
"body": "Terreo amo ipsam vomito audacia ago cogito centum.",
"isRead": true,
"link": "https://example.com/follow/I8RvNte2",
"createdAt": "2025-06-24T17:07:42.533Z"
}