Activity #1391
User #65 like Lamont Huel liked your post
6/8/2025, 6:29:30 PM
Overview
notifications / #1391
User #65 like Lamont Huel liked your post
6/8/2025, 6:29:30 PM
User #65 like Lamont Huel liked your post
6/8/2025, 6:29:30 PM
View recordUser #65 like Lamont Huel liked your post · 6/8/2025, 6:29:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1391" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1391" ); 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/1391"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1391"
)
notification = res.json() Response
{
"id": 1391,
"userId": 65,
"type": "like",
"title": "Lamont Huel liked your post",
"body": "Asporto conitor creator thalassinus crepusculum harum alo adhuc suscipit.",
"isRead": true,
"link": "https://example.com/like/Q0U4KUDk",
"createdAt": "2025-06-08T18:29:30.943Z"
}