Activity #684
User #194 like Alex Lang liked your post
8/14/2025, 8:32:25 PM
Overview
notifications / #684
User #194 like Alex Lang liked your post
8/14/2025, 8:32:25 PM
User #194 like Alex Lang liked your post
8/14/2025, 8:32:25 PM
View recordUser #194 like Alex Lang liked your post · 8/14/2025, 8:32:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/684" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/684" ); 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/684"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/684"
)
notification = res.json() Response
{
"id": 684,
"userId": 194,
"type": "like",
"title": "Alex Lang liked your post",
"body": "Cumque validus curvo.",
"isRead": false,
"link": "https://example.com/like/caI7AY6B",
"createdAt": "2025-08-14T20:32:25.537Z"
}