Activity #478
User #2 follow Jonathan Howe started following you
6/13/2025, 8:40:11 PM
Overview
notifications / #478
User #2 follow Jonathan Howe started following you
6/13/2025, 8:40:11 PM
User #2 follow Jonathan Howe started following you
6/13/2025, 8:40:11 PM
View recordUser #2 follow Jonathan Howe started following you · 6/13/2025, 8:40:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/478" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/478" ); 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/478"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/478"
)
notification = res.json() Response
{
"id": 478,
"userId": 2,
"type": "follow",
"title": "Jonathan Howe started following you",
"body": "Vallum turbo exercitationem creptio.",
"isRead": true,
"link": "https://example.com/follow/uFpBDR1w",
"createdAt": "2025-06-13T20:40:11.245Z"
}