Activity #244
User #88 follow Adelia Roberts started following you
6/19/2025, 4:38:48 PM
Overview
notifications / #244
User #88 follow Adelia Roberts started following you
6/19/2025, 4:38:48 PM
User #88 follow Adelia Roberts started following you
6/19/2025, 4:38:48 PM
View recordUser #88 follow Adelia Roberts started following you · 6/19/2025, 4:38:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/244" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/244" ); 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/244"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/244"
)
notification = res.json() Response
{
"id": 244,
"userId": 88,
"type": "follow",
"title": "Adelia Roberts started following you",
"body": "Depopulo curso adeptio compello alii adsum hic.",
"isRead": false,
"link": "https://example.com/follow/UcG4eqDT",
"createdAt": "2025-06-19T16:38:48.797Z"
}