Activity #895
User #178 like Clementine Nicolas liked your post
8/21/2025, 5:47:15 AM
Overview
notifications / #895
User #178 like Clementine Nicolas liked your post
8/21/2025, 5:47:15 AM
User #178 like Clementine Nicolas liked your post
8/21/2025, 5:47:15 AM
View recordUser #178 like Clementine Nicolas liked your post · 8/21/2025, 5:47:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/895" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/895" ); 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/895"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/895"
)
notification = res.json() Response
{
"id": 895,
"userId": 178,
"type": "like",
"title": "Clementine Nicolas liked your post",
"body": "Deduco ascisco tepidus ducimus sol non sophismata.",
"isRead": false,
"link": "https://example.com/like/rAx_lb-x",
"createdAt": "2025-08-21T05:47:15.262Z"
}