Activity #514
User #50 like Queen Lubowitz liked your post
6/14/2025, 3:41:45 AM
Overview
notifications / #514
User #50 like Queen Lubowitz liked your post
6/14/2025, 3:41:45 AM
User #50 like Queen Lubowitz liked your post
6/14/2025, 3:41:45 AM
View recordUser #50 like Queen Lubowitz liked your post · 6/14/2025, 3:41:45 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/514" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/514" ); 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/514"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/514"
)
notification = res.json() Response
{
"id": 514,
"userId": 50,
"type": "like",
"title": "Queen Lubowitz liked your post",
"body": "Colo deripio decet fugit corpus.",
"isRead": true,
"link": "https://example.com/like/tvYgBShg",
"createdAt": "2025-06-14T03:41:45.398Z"
}