Activity #997
User #181 like Frederic Armstrong liked your post
5/23/2025, 7:08:22 PM
Overview
notifications / #997
User #181 like Frederic Armstrong liked your post
5/23/2025, 7:08:22 PM
User #181 like Frederic Armstrong liked your post
5/23/2025, 7:08:22 PM
View recordUser #181 like Frederic Armstrong liked your post · 5/23/2025, 7:08:22 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/997" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/997" ); 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/997"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/997"
)
notification = res.json() Response
{
"id": 997,
"userId": 181,
"type": "like",
"title": "Frederic Armstrong liked your post",
"body": "Theca crux praesentium quia.",
"isRead": true,
"link": "https://example.com/like/jIlPX2WC",
"createdAt": "2025-05-23T19:08:22.034Z"
}