Activity #892
User #68 like Vida Kunde-Koepp liked your post
7/30/2025, 7:41:30 PM
Overview
notifications / #892
User #68 like Vida Kunde-Koepp liked your post
7/30/2025, 7:41:30 PM
User #68 like Vida Kunde-Koepp liked your post
7/30/2025, 7:41:30 PM
View recordUser #68 like Vida Kunde-Koepp liked your post · 7/30/2025, 7:41:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/892" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/892" ); 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/892"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/892"
)
notification = res.json() Response
{
"id": 892,
"userId": 68,
"type": "like",
"title": "Vida Kunde-Koepp liked your post",
"body": "Tergeo videlicet sol.",
"isRead": false,
"link": "https://example.com/like/a_k0T9b1",
"createdAt": "2025-07-30T19:41:30.472Z"
}