Activity #1656
User #130 follow Dasia Volkman started following you
9/3/2025, 1:49:45 AM
Overview
notifications / #1656
User #130 follow Dasia Volkman started following you
9/3/2025, 1:49:45 AM
User #130 follow Dasia Volkman started following you
9/3/2025, 1:49:45 AM
View recordUser #130 follow Dasia Volkman started following you · 9/3/2025, 1:49:45 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1656" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1656" ); 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/1656"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1656"
)
notification = res.json() Response
{
"id": 1656,
"userId": 130,
"type": "follow",
"title": "Dasia Volkman started following you",
"body": "Facere voluptatem astrum adsuesco nemo bos adfectus vis.",
"isRead": true,
"link": null,
"createdAt": "2025-09-03T01:49:45.433Z"
}