Activity #312
User #79 like Jadon Nicolas liked your post
5/11/2026, 10:04:04 PM
Overview
notifications / #312
User #79 like Jadon Nicolas liked your post
5/11/2026, 10:04:04 PM
User #79 like Jadon Nicolas liked your post
5/11/2026, 10:04:04 PM
View recordUser #79 like Jadon Nicolas liked your post · 5/11/2026, 10:04:04 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/312" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/312" ); 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/312"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/312"
)
notification = res.json() Response
{
"id": 312,
"userId": 79,
"type": "like",
"title": "Jadon Nicolas liked your post",
"body": "Celebrer voro explicabo.",
"isRead": false,
"link": "https://example.com/like/v9BUzmCb",
"createdAt": "2026-05-11T22:04:04.640Z"
}